UNPKG

@apideck/node

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