UNPKG

@apideck/node

Version:
48 lines (47 loc) 1.37 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 { LinkedConnectorResource } from './LinkedConnectorResource'; import { UnifiedApiId } from './UnifiedApiId'; /** * * @export * @interface ResourceExample */ export interface ResourceExample { /** * * @type {UnifiedApiId} * @memberof ResourceExample */ unified_api?: UnifiedApiId; /** * Service provider identifier * @type {string} * @memberof ResourceExample */ service_id?: string; /** * * @type {LinkedConnectorResource} * @memberof ResourceExample */ resource?: LinkedConnectorResource; /** * Example response from the downstream API * @type {object} * @memberof ResourceExample */ example_response?: object; } export declare function ResourceExampleFromJSON(json: any): ResourceExample; export declare function ResourceExampleFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceExample; export declare function ResourceExampleToJSON(value?: ResourceExample | null): any;