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