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