UNPKG

@asposecloud/aspose-email-cloud

Version:
46 lines (45 loc) 1.6 kB
export declare class EnumWithCustomOfPhoneNumberCategory { /** * Attribute type map */ static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; /** * Returns attribute type map */ static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; /** * Phone number category. Enum, available values: Custom, Home, Work, Office, Mobile, Fax, HomeFax, WorkFax, Pager, Car, Isdn, Telex, Callback, Radio, Company, TtyTdd, Assistant, Primary */ value: string; description: string; /** * * @param value Phone number category. Enum, available values: Custom, Home, Work, Office, Mobile, Fax, HomeFax, WorkFax, Pager, Car, Isdn, Telex, Callback, Radio, Company, TtyTdd, Assistant, Primary * @param description */ constructor(value?: string, description?: string); } /** * EnumWithCustomOfPhoneNumberCategory model builder */ export declare class EnumWithCustomOfPhoneNumberCategoryBuilder { private readonly model; constructor(model: EnumWithCustomOfPhoneNumberCategory); /** * Build model. */ build(): EnumWithCustomOfPhoneNumberCategory; /** * Phone number category. Enum, available values: Custom, Home, Work, Office, Mobile, Fax, HomeFax, WorkFax, Pager, Car, Isdn, Telex, Callback, Radio, Company, TtyTdd, Assistant, Primary */ value(value: string): EnumWithCustomOfPhoneNumberCategoryBuilder; description(description: string): EnumWithCustomOfPhoneNumberCategoryBuilder; }