UNPKG

@apideck/node

Version:
71 lines (70 loc) 1.8 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 { PassThroughBody } from './PassThroughBody'; /** * * @export * @interface OrderType */ export interface OrderType { /** * A unique identifier for an object. * @type {string} * @memberof OrderType */ readonly id?: string; /** * * @type {string} * @memberof OrderType */ name?: string; /** * * @type {boolean} * @memberof OrderType */ _default?: boolean; /** * The user who last updated the object. * @type {string} * @memberof OrderType */ readonly updated_by?: string | null; /** * The user who created the object. * @type {string} * @memberof OrderType */ readonly created_by?: string | null; /** * The date and time when the object was last updated. * @type {Date} * @memberof OrderType */ readonly updated_at?: Date | null; /** * The date and time when the object was created. * @type {Date} * @memberof OrderType */ readonly created_at?: Date | null; /** * * @type {PassThroughBody} * @memberof OrderType */ pass_through?: PassThroughBody; } export declare function OrderTypeFromJSON(json: any): OrderType; export declare function OrderTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderType; export declare function OrderTypeToJSON(value?: OrderType | null): any;