/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Configuration for a single callback parameter
 * @export
 * @interface ProviderCallbackConfig
 */
export interface ProviderCallbackConfig {
    /**
     * The credential field name that this parameter maps to
     * @type {string}
     * @memberof ProviderCallbackConfig
     */
    field: string;
    /**
     * The query parameter name in the callback URL
     * @type {string}
     * @memberof ProviderCallbackConfig
     */
    query_string: string;
    /**
     * Whether this parameter is required in the callback
     * @type {boolean}
     * @memberof ProviderCallbackConfig
     */
    required: boolean;
    /**
     * The expected data type of the parameter value
     * @type {string}
     * @memberof ProviderCallbackConfig
     */
    type: string;
}
