/** * Pipedrive API v1 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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 AddNoteRequestAllOf1 */ export interface AddNoteRequestAllOf1 { /** * The ID of the user who will be marked as the author of the note. Only an admin can change the author. * @type {number} */ 'user_id'?: number; /** * The optional creation date & time of the note in UTC. Can be set in the past or in the future. Format: YYYY-MM-DD HH:MM:SS * @type {string} */ 'add_time'?: string; /** * * @type {number} */ 'pinned_to_lead_flag'?: AddNoteRequestAllOf1PinnedToLeadFlagConst; /** * * @type {number} */ 'pinned_to_deal_flag'?: AddNoteRequestAllOf1PinnedToDealFlagConst; /** * * @type {number} */ 'pinned_to_organization_flag'?: AddNoteRequestAllOf1PinnedToOrganizationFlagConst; /** * * @type {number} */ 'pinned_to_person_flag'?: AddNoteRequestAllOf1PinnedToPersonFlagConst; /** * * @type {number} */ 'pinned_to_project_flag'?: AddNoteRequestAllOf1PinnedToProjectFlagConst; /** * * @type {number} */ 'pinned_to_task_flag'?: AddNoteRequestAllOf1PinnedToTaskFlagConst; } export declare const AddNoteRequestAllOf1PinnedToLeadFlagConst: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; }; export type AddNoteRequestAllOf1PinnedToLeadFlagConst = typeof AddNoteRequestAllOf1PinnedToLeadFlagConst[keyof typeof AddNoteRequestAllOf1PinnedToLeadFlagConst]; export declare const AddNoteRequestAllOf1PinnedToDealFlagConst: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; }; export type AddNoteRequestAllOf1PinnedToDealFlagConst = typeof AddNoteRequestAllOf1PinnedToDealFlagConst[keyof typeof AddNoteRequestAllOf1PinnedToDealFlagConst]; export declare const AddNoteRequestAllOf1PinnedToOrganizationFlagConst: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; }; export type AddNoteRequestAllOf1PinnedToOrganizationFlagConst = typeof AddNoteRequestAllOf1PinnedToOrganizationFlagConst[keyof typeof AddNoteRequestAllOf1PinnedToOrganizationFlagConst]; export declare const AddNoteRequestAllOf1PinnedToPersonFlagConst: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; }; export type AddNoteRequestAllOf1PinnedToPersonFlagConst = typeof AddNoteRequestAllOf1PinnedToPersonFlagConst[keyof typeof AddNoteRequestAllOf1PinnedToPersonFlagConst]; export declare const AddNoteRequestAllOf1PinnedToProjectFlagConst: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; }; export type AddNoteRequestAllOf1PinnedToProjectFlagConst = typeof AddNoteRequestAllOf1PinnedToProjectFlagConst[keyof typeof AddNoteRequestAllOf1PinnedToProjectFlagConst]; export declare const AddNoteRequestAllOf1PinnedToTaskFlagConst: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; }; export type AddNoteRequestAllOf1PinnedToTaskFlagConst = typeof AddNoteRequestAllOf1PinnedToTaskFlagConst[keyof typeof AddNoteRequestAllOf1PinnedToTaskFlagConst];