/**
 * 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 { PaginationCoverage } from './PaginationCoverage';
import { SupportedProperty } from './SupportedProperty';
/**
 *
 * @export
 * @interface ApiResourceCoverageCoverage
 */
export interface ApiResourceCoverageCoverage {
    /**
     * ID of the resource in the Connector's API (downstream)
     * @type {string}
     * @memberof ApiResourceCoverageCoverage
     */
    downstream_id?: string;
    /**
     * Name of the resource in the Connector's API (downstream)
     * @type {string}
     * @memberof ApiResourceCoverageCoverage
     */
    downstream_name?: string;
    /**
     * Indicates if pagination (cursor and limit parameters) is supported on the list endpoint of the resource.
     * @type {boolean}
     * @memberof ApiResourceCoverageCoverage
     */
    pagination_supported?: boolean;
    /**
     *
     * @type {PaginationCoverage}
     * @memberof ApiResourceCoverageCoverage
     */
    pagination?: PaginationCoverage;
    /**
     * List of supported operations on the resource.
     * @type {Array<string>}
     * @memberof ApiResourceCoverageCoverage
     */
    supported_operations?: Array<string>;
    /**
     * Supported filters on the list endpoint of the resource.
     * @type {Array<string>}
     * @memberof ApiResourceCoverageCoverage
     */
    supported_filters?: Array<string>;
    /**
     * Supported sorting properties on the list endpoint of the resource.
     * @type {Array<string>}
     * @memberof ApiResourceCoverageCoverage
     */
    supported_sort_by?: Array<string>;
    /**
     * Supported fields on the detail endpoint.
     * @type {Array<SupportedProperty>}
     * @memberof ApiResourceCoverageCoverage
     */
    supported_fields?: Array<SupportedProperty>;
    /**
     * Supported fields on the list endpoint.
     * @type {Array<SupportedProperty>}
     * @memberof ApiResourceCoverageCoverage
     */
    supported_list_fields?: Array<SupportedProperty>;
}
export declare function ApiResourceCoverageCoverageFromJSON(json: any): ApiResourceCoverageCoverage;
export declare function ApiResourceCoverageCoverageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiResourceCoverageCoverage;
export declare function ApiResourceCoverageCoverageToJSON(value?: ApiResourceCoverageCoverage | null): any;
