/** * Pipedrive API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.0.0 * * * 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 AddActivityRequestAttendeesInner */ export interface AddActivityRequestAttendeesInner { /** * The email address of the attendee * @type {string} */ 'email'?: string; /** * The name of the attendee * @type {string} */ 'name'?: string; /** * The status of the attendee * @type {string} */ 'status'?: string; /** * Whether the attendee is the organizer or not * @type {boolean} */ 'is_organizer'?: boolean; /** * The ID of the person if the attendee has a person record * @type {number} */ 'person_id'?: number; /** * The ID of the user if the attendee is a user * @type {number} */ 'user_id'?: number; }