UNPKG

@apideck/node

Version:
53 lines (52 loc) 1.61 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 { Address } from './Address'; /** * The supplier this entity is linked to. * @export * @interface DeprecatedLinkedSupplier */ export interface DeprecatedLinkedSupplier { /** * A unique identifier for an object. * @type {string} * @memberof DeprecatedLinkedSupplier */ readonly id?: string; /** * The display ID of the supplier. * @type {string} * @memberof DeprecatedLinkedSupplier */ readonly display_id?: string | null; /** * The display name of the supplier. * @type {string} * @memberof DeprecatedLinkedSupplier */ display_name?: string | null; /** * The company name of the supplier. * @type {string} * @memberof DeprecatedLinkedSupplier */ readonly company_name?: string | null; /** * * @type {Address} * @memberof DeprecatedLinkedSupplier */ address?: Address; } export declare function DeprecatedLinkedSupplierFromJSON(json: any): DeprecatedLinkedSupplier; export declare function DeprecatedLinkedSupplierFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeprecatedLinkedSupplier; export declare function DeprecatedLinkedSupplierToJSON(value?: DeprecatedLinkedSupplier | null): any;