UNPKG

@apideck/node

Version:
113 lines (112 loc) 2.83 kB
/** * 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. */ import { PassThroughBody } from './PassThroughBody'; /** * * @export * @interface Note */ export interface Note { /** * The unique identifier of the note * @type {string} * @memberof Note */ readonly id?: string; /** * The title of the note * @type {string} * @memberof Note */ title?: string | null; /** * The content of the note. * @type {string} * @memberof Note */ content?: string | null; /** * The user that owns the note. * @type {string} * @memberof Note */ owner_id?: string | null; /** * The contact that is related to the note. * @type {string} * @memberof Note */ contact_id?: string | null; /** * The company that is related to the note. * @type {string} * @memberof Note */ company_id?: string | null; /** * The opportunity that is related to the note. * @type {string} * @memberof Note */ opportunity_id?: string | null; /** * The lead that is related to the note. * @type {string} * @memberof Note */ lead_id?: string | null; /** * Whether the Note is active or not. * @type {boolean} * @memberof Note */ active?: boolean | null; /** * When custom mappings are configured on the resource, the result is included here. * @type {object} * @memberof Note */ readonly custom_mappings?: object | null; /** * The user that last updated the note. * @type {string} * @memberof Note */ readonly updated_by?: string | null; /** * The user that created the note. * @type {string} * @memberof Note */ readonly created_by?: string | null; /** * The timestamp when the note was last updated * @type {string} * @memberof Note */ readonly updated_at?: string | null; /** * The timestamp when the note was created * @type {string} * @memberof Note */ readonly created_at?: string | null; /** * * @type {PassThroughBody} * @memberof Note */ pass_through?: PassThroughBody; } export declare function NoteFromJSON(json: any): Note; export declare function NoteFromJSONTyped(json: any, ignoreDiscriminator: boolean): Note; export declare function NoteToJSON(value?: Note | null): any;