@apideck/node
Version:
Apideck Node.js SDK
58 lines (57 loc) • 1.64 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.
*/
/**
* The customer this entity is linked to.
* @export
* @interface LinkedCustomer
*/
export interface LinkedCustomer {
/**
* The ID of the customer this entity is linked to.
* @type {string}
* @memberof LinkedCustomer
*/
id?: string;
/**
* The display ID of the customer.
* @type {string}
* @memberof LinkedCustomer
*/
readonly display_id?: string | null;
/**
* The display name of the customer.
* @type {string}
* @memberof LinkedCustomer
*/
display_name?: string | null;
/**
* The name of the customer. Deprecated, use display_name instead.
* @type {string}
* @memberof LinkedCustomer
*/
name?: string;
/**
* The company name of the customer.
* @type {string}
* @memberof LinkedCustomer
*/
readonly company_name?: string | null;
/**
* The email address of the customer.
* @type {string}
* @memberof LinkedCustomer
*/
email?: string;
}
export declare function LinkedCustomerFromJSON(json: any): LinkedCustomer;
export declare function LinkedCustomerFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkedCustomer;
export declare function LinkedCustomerToJSON(value?: LinkedCustomer | null): any;