UNPKG

@asposecloud/aspose-email-cloud

Version:
46 lines (45 loc) 1.39 kB
export declare class EnumWithCustomOfEmailAddressCategory { /** * Attribute type map */ static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; /** * Returns attribute type map */ static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; /** * Represents category for an email address. Enum, available values: Home, Work, Custom, Email1, Email2, Email3 */ value: string; description: string; /** * * @param value Represents category for an email address. Enum, available values: Home, Work, Custom, Email1, Email2, Email3 * @param description */ constructor(value?: string, description?: string); } /** * EnumWithCustomOfEmailAddressCategory model builder */ export declare class EnumWithCustomOfEmailAddressCategoryBuilder { private readonly model; constructor(model: EnumWithCustomOfEmailAddressCategory); /** * Build model. */ build(): EnumWithCustomOfEmailAddressCategory; /** * Represents category for an email address. Enum, available values: Home, Work, Custom, Email1, Email2, Email3 */ value(value: string): EnumWithCustomOfEmailAddressCategoryBuilder; description(description: string): EnumWithCustomOfEmailAddressCategoryBuilder; }