@asposecloud/aspose-email-cloud
Version:
Aspose.Email Cloud Node.js SDK
52 lines (51 loc) • 1.2 kB
TypeScript
import * as model from "./index";
/**
* Mapi property with Integer value
*/
export declare class MapiIntPropertyDto extends model.MapiPropertyDto {
/**
* Attribute type map
*/
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
/**
* Property value
*/
value: number;
/**
* Mapi property with Integer value
* @param descriptor Property descriptor
* @param value Property value
*/
constructor(descriptor?: model.MapiPropertyDescriptor, value?: number);
}
/**
* MapiIntPropertyDto model builder
*/
export declare class MapiIntPropertyDtoBuilder {
private readonly model;
constructor(model: MapiIntPropertyDto);
/**
* Build model.
*/
build(): MapiIntPropertyDto;
/**
* Property descriptor
*/
descriptor(descriptor: model.MapiPropertyDescriptor): MapiIntPropertyDtoBuilder;
/**
* Property value
*/
value(value: number): MapiIntPropertyDtoBuilder;
}