UNPKG

@apideck/node

Version:
80 lines (79 loc) 2.12 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 { CollectionUser } from './CollectionUser'; import { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetCollectionUsersResponse */ export interface GetCollectionUsersResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetCollectionUsersResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetCollectionUsersResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetCollectionUsersResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetCollectionUsersResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetCollectionUsersResponse */ operation: string; /** * * @type {Array<CollectionUser>} * @memberof GetCollectionUsersResponse */ data: Array<CollectionUser>; /** * * @type {Meta} * @memberof GetCollectionUsersResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetCollectionUsersResponse */ links?: Links; /** * * @type {Raw} * @memberof GetCollectionUsersResponse */ _raw?: Raw | null; } export declare function GetCollectionUsersResponseFromJSON(json: any): GetCollectionUsersResponse; export declare function GetCollectionUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCollectionUsersResponse; export declare function GetCollectionUsersResponseToJSON(value?: GetCollectionUsersResponse | null): any;