/**
 * 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 GetConnectorResourceExampleResponseData
 */
export interface GetConnectorResourceExampleResponseData {
    /**
     *
     * @type {UnifiedApiId}
     * @memberof GetConnectorResourceExampleResponseData
     */
    unified_api?: UnifiedApiId;
    /**
     * Service provider identifier
     * @type {string}
     * @memberof GetConnectorResourceExampleResponseData
     */
    service_id?: string;
    /**
     *
     * @type {LinkedConnectorResource}
     * @memberof GetConnectorResourceExampleResponseData
     */
    resource?: LinkedConnectorResource;
    /**
     *
     * @type {object}
     * @memberof GetConnectorResourceExampleResponseData
     */
    example_response?: object;
    /**
     * If the resource has a workflow, this will contain the example response for each step
     * @type {{ [key: string]: unknown; }}
     * @memberof GetConnectorResourceExampleResponseData
     */
    workflow_examples?: {
        [key: string]: unknown;
    };
}
export declare function GetConnectorResourceExampleResponseDataFromJSON(json: any): GetConnectorResourceExampleResponseData;
export declare function GetConnectorResourceExampleResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetConnectorResourceExampleResponseData;
export declare function GetConnectorResourceExampleResponseDataToJSON(value?: GetConnectorResourceExampleResponseData | null): any;
