UNPKG

@apideck/node

Version:
108 lines (107 loc) 2.66 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 { Currency } from './Currency'; import { PassThroughBody } from './PassThroughBody'; /** * * @export * @interface Modifier */ export interface Modifier { /** * * @type {string} * @memberof Modifier */ name: string; /** * * @type {string} * @memberof Modifier */ modifier_group_id: string; /** * A unique identifier for an object. * @type {string} * @memberof Modifier */ readonly id?: string; /** * A value you specify that uniquely identifies this request among requests you have sent. * @type {string} * @memberof Modifier */ idempotency_key?: string; /** * * @type {string} * @memberof Modifier */ alternate_name?: string; /** * * @type {number} * @memberof Modifier */ price_amount?: number; /** * * @type {Currency} * @memberof Modifier */ currency?: Currency | null; /** * * @type {boolean} * @memberof Modifier */ available?: boolean | null; /** * When custom mappings are configured on the resource, the result is included here. * @type {object} * @memberof Modifier */ readonly custom_mappings?: object | null; /** * The user who last updated the object. * @type {string} * @memberof Modifier */ readonly updated_by?: string | null; /** * The user who created the object. * @type {string} * @memberof Modifier */ readonly created_by?: string | null; /** * The date and time when the object was last updated. * @type {Date} * @memberof Modifier */ readonly updated_at?: Date | null; /** * The date and time when the object was created. * @type {Date} * @memberof Modifier */ readonly created_at?: Date | null; /** * * @type {PassThroughBody} * @memberof Modifier */ pass_through?: PassThroughBody; } export declare function ModifierFromJSON(json: any): Modifier; export declare function ModifierFromJSONTyped(json: any, ignoreDiscriminator: boolean): Modifier; export declare function ModifierToJSON(value?: Modifier | null): any;