@asposecloud/aspose-email-cloud
Version:
Aspose.Email Cloud Node.js SDK
46 lines (45 loc) • 1.25 kB
TypeScript
export declare class EnumWithCustomOfPostalAddressCategory {
/**
* Attribute type map
*/
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
/**
* Address category. Enum, available values: Home, Work, Custom
*/
value: string;
description: string;
/**
*
* @param value Address category. Enum, available values: Home, Work, Custom
* @param description
*/
constructor(value?: string, description?: string);
}
/**
* EnumWithCustomOfPostalAddressCategory model builder
*/
export declare class EnumWithCustomOfPostalAddressCategoryBuilder {
private readonly model;
constructor(model: EnumWithCustomOfPostalAddressCategory);
/**
* Build model.
*/
build(): EnumWithCustomOfPostalAddressCategory;
/**
* Address category. Enum, available values: Home, Work, Custom
*/
value(value: string): EnumWithCustomOfPostalAddressCategoryBuilder;
description(description: string): EnumWithCustomOfPostalAddressCategoryBuilder;
}