@asposecloud/aspose-email-cloud
Version:
Aspose.Email Cloud Node.js SDK
46 lines (45 loc) • 968 B
TypeScript
/**
* Defines an \"Attendee\" within a alarm.
*/
export declare class ReminderAttendee {
/**
* Attribute type map
*/
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
/**
* Contains the email address.
*/
address: string;
/**
* Defines an \"Attendee\" within a alarm.
* @param address Contains the email address.
*/
constructor(address?: string);
}
/**
* ReminderAttendee model builder
*/
export declare class ReminderAttendeeBuilder {
private readonly model;
constructor(model: ReminderAttendee);
/**
* Build model.
*/
build(): ReminderAttendee;
/**
* Contains the email address.
*/
address(address: string): ReminderAttendeeBuilder;
}