@apideck/node
Version:
Apideck Node.js SDK
53 lines (52 loc) • 1.49 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.
*/
import { Address } from './Address';
/**
* The supplier this entity is linked to.
* @export
* @interface LinkedSupplier
*/
export interface LinkedSupplier {
/**
* The ID of the supplier this entity is linked to.
* @type {string}
* @memberof LinkedSupplier
*/
id?: string;
/**
* The display ID of the supplier.
* @type {string}
* @memberof LinkedSupplier
*/
readonly display_id?: string | null;
/**
* The display name of the supplier.
* @type {string}
* @memberof LinkedSupplier
*/
display_name?: string | null;
/**
* The company name of the supplier.
* @type {string}
* @memberof LinkedSupplier
*/
readonly company_name?: string | null;
/**
*
* @type {Address}
* @memberof LinkedSupplier
*/
address?: Address;
}
export declare function LinkedSupplierFromJSON(json: any): LinkedSupplier;
export declare function LinkedSupplierFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkedSupplier;
export declare function LinkedSupplierToJSON(value?: LinkedSupplier | null): any;