@apideck/node
Version:
Apideck Node.js SDK
66 lines (65 loc) • 1.78 kB
TypeScript
/**
* 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 { ModifierGroup } from './ModifierGroup';
import { Raw } from './Raw';
/**
*
* @export
* @interface GetModifierGroupResponse
*/
export interface GetModifierGroupResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof GetModifierGroupResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof GetModifierGroupResponse
*/
status: string;
/**
* Apideck ID of service provider
* @type {string}
* @memberof GetModifierGroupResponse
*/
service: string;
/**
* Unified API resource name
* @type {string}
* @memberof GetModifierGroupResponse
*/
resource: string;
/**
* Operation performed
* @type {string}
* @memberof GetModifierGroupResponse
*/
operation: string;
/**
*
* @type {ModifierGroup}
* @memberof GetModifierGroupResponse
*/
data: ModifierGroup;
/**
*
* @type {Raw}
* @memberof GetModifierGroupResponse
*/
_raw?: Raw | null;
}
export declare function GetModifierGroupResponseFromJSON(json: any): GetModifierGroupResponse;
export declare function GetModifierGroupResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetModifierGroupResponse;
export declare function GetModifierGroupResponseToJSON(value?: GetModifierGroupResponse | null): any;