UNPKG

@apideck/node

Version:
127 lines (126 loc) 3.23 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 ModifierGroup */ export interface ModifierGroup { /** * A unique identifier for an object. * @type {string} * @memberof ModifierGroup */ readonly id?: string; /** * * @type {string} * @memberof ModifierGroup */ name?: string; /** * * @type {string} * @memberof ModifierGroup */ alternate_name?: string; /** * * @type {number} * @memberof ModifierGroup */ minimum_required?: number; /** * * @type {number} * @memberof ModifierGroup */ maximum_allowed?: number; /** * * @type {string} * @memberof ModifierGroup */ selection_type?: ModifierGroupSelectionType; /** * * @type {boolean} * @memberof ModifierGroup */ present_at_all_locations?: boolean; /** * * @type {Array<object>} * @memberof ModifierGroup */ modifiers?: Array<object>; /** * Flag to indicate if the object is deleted. * @type {boolean} * @memberof ModifierGroup */ deleted?: boolean | null; /** * When custom mappings are configured on the resource, the result is included here. * @type {object} * @memberof ModifierGroup */ readonly custom_mappings?: object | null; /** * A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. * @type {string} * @memberof ModifierGroup */ row_version?: string | null; /** * The user who last updated the object. * @type {string} * @memberof ModifierGroup */ readonly updated_by?: string | null; /** * The user who created the object. * @type {string} * @memberof ModifierGroup */ readonly created_by?: string | null; /** * The date and time when the object was last updated. * @type {Date} * @memberof ModifierGroup */ readonly updated_at?: Date | null; /** * The date and time when the object was created. * @type {Date} * @memberof ModifierGroup */ readonly created_at?: Date | null; /** * * @type {PassThroughBody} * @memberof ModifierGroup */ pass_through?: PassThroughBody; } /** * @export * @enum {string} */ export declare enum ModifierGroupSelectionType { single = "single", multiple = "multiple" } export declare function ModifierGroupFromJSON(json: any): ModifierGroup; export declare function ModifierGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModifierGroup; export declare function ModifierGroupToJSON(value?: ModifierGroup | null): any;