UNPKG

@apideck/node

Version:
34 lines (33 loc) 901 B
/** * 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. */ /** * * @export * @interface CompanyRowType */ export interface CompanyRowType { /** * * @type {string} * @memberof CompanyRowType */ id?: string | null; /** * * @type {string} * @memberof CompanyRowType */ name?: string | null; } export declare function CompanyRowTypeFromJSON(json: any): CompanyRowType; export declare function CompanyRowTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompanyRowType; export declare function CompanyRowTypeToJSON(value?: CompanyRowType | null): any;