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