UNPKG

@apideck/node

Version:
80 lines (79 loc) 2.1 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 { Links } from './Links'; import { Meta } from './Meta'; import { ModifierGroup } from './ModifierGroup'; import { Raw } from './Raw'; /** * * @export * @interface GetModifierGroupsResponse */ export interface GetModifierGroupsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetModifierGroupsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetModifierGroupsResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetModifierGroupsResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetModifierGroupsResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetModifierGroupsResponse */ operation: string; /** * * @type {Array<ModifierGroup>} * @memberof GetModifierGroupsResponse */ data: Array<ModifierGroup>; /** * * @type {Meta} * @memberof GetModifierGroupsResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetModifierGroupsResponse */ links?: Links; /** * * @type {Raw} * @memberof GetModifierGroupsResponse */ _raw?: Raw | null; } export declare function GetModifierGroupsResponseFromJSON(json: any): GetModifierGroupsResponse; export declare function GetModifierGroupsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetModifierGroupsResponse; export declare function GetModifierGroupsResponseToJSON(value?: GetModifierGroupsResponse | null): any;