UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.61 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 { Raw } from './Raw'; import { User } from './User'; /** * * @export * @interface GetUserResponse */ export interface GetUserResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetUserResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetUserResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetUserResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetUserResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetUserResponse */ operation: string; /** * * @type {User} * @memberof GetUserResponse */ data: User; /** * * @type {Raw} * @memberof GetUserResponse */ _raw?: Raw | null; } export declare function GetUserResponseFromJSON(json: any): GetUserResponse; export declare function GetUserResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserResponse; export declare function GetUserResponseToJSON(value?: GetUserResponse | null): any;