@apideck/node
Version:
Apideck Node.js SDK
34 lines (33 loc) • 1.08 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 parent customer this entity is linked to.
* @export
* @interface LinkedParentCustomer
*/
export interface LinkedParentCustomer {
/**
* The parent ID of the customer this entity is linked to.
* @type {string}
* @memberof LinkedParentCustomer
*/
id: string;
/**
* The name of the parent customer.
* @type {string}
* @memberof LinkedParentCustomer
*/
name?: string;
}
export declare function LinkedParentCustomerFromJSON(json: any): LinkedParentCustomer;
export declare function LinkedParentCustomerFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkedParentCustomer;
export declare function LinkedParentCustomerToJSON(value?: LinkedParentCustomer | null): any;