@apideck/node
Version:
Apideck Node.js SDK
115 lines (114 loc) • 3 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface ActivityAttendee
*/
export interface ActivityAttendee {
/**
* Unique identifier for the attendee
* @type {string}
* @memberof ActivityAttendee
*/
readonly id?: string | null;
/**
* Full name of the attendee
* @type {string}
* @memberof ActivityAttendee
*/
name?: string | null;
/**
* First name of the attendee
* @type {string}
* @memberof ActivityAttendee
*/
first_name?: string | null;
/**
* Middle name of the attendee
* @type {string}
* @memberof ActivityAttendee
*/
middle_name?: string | null;
/**
* Last name of the attendee
* @type {string}
* @memberof ActivityAttendee
*/
last_name?: string | null;
/**
* Prefix of the attendee
* @type {string}
* @memberof ActivityAttendee
*/
prefix?: string | null;
/**
* Suffix of the attendee
* @type {string}
* @memberof ActivityAttendee
*/
suffix?: string | null;
/**
* Email address of the attendee
* @type {string}
* @memberof ActivityAttendee
*/
email_address?: string | null;
/**
* Whether the attendee is the organizer of the activity
* @type {boolean}
* @memberof ActivityAttendee
*/
is_organizer?: boolean | null;
/**
* Status of the attendee
* @type {string}
* @memberof ActivityAttendee
*/
status?: ActivityAttendeeStatus;
/**
* The identifier for a related user
* @type {string}
* @memberof ActivityAttendee
*/
readonly user_id?: string | null;
/**
* The identifier for a related contact
* @type {string}
* @memberof ActivityAttendee
*/
readonly contact_id?: string | null;
/**
* The last time the attendee was updated (ISO 8601)
* @type {Date}
* @memberof ActivityAttendee
*/
readonly updated_at?: Date | null;
/**
* The time the attendee was created (ISO 8601)
* @type {Date}
* @memberof ActivityAttendee
*/
readonly created_at?: Date | null;
}
/**
* @export
* @enum {string}
*/
export declare enum ActivityAttendeeStatus {
accepted = "accepted",
tentative = "tentative",
declined = "declined"
}
export declare function ActivityAttendeeFromJSON(json: any): ActivityAttendee;
export declare function ActivityAttendeeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivityAttendee;
export declare function ActivityAttendeeToJSON(value?: ActivityAttendee | null): any;