/**
 * 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.
 */
import { ProviderCode } from './provider-code';
import { ProviderType } from './provider-type';
/**
 *
 * @export
 * @interface ProviderRelation
 */
export interface ProviderRelation {
    /**
     * Tells if the provider is active or not
     * @type {boolean}
     * @memberof ProviderRelation
     */
    active: boolean;
    /**
     *
     * @type {ProviderCode}
     * @memberof ProviderRelation
     */
    code: ProviderCode;
    /**
     * Human readable version of provider code
     * @type {string}
     * @memberof ProviderRelation
     */
    code_human_readable: string;
    /**
     *
     * @type {ProviderType}
     * @memberof ProviderRelation
     */
    type: ProviderType;
    /**
     * Human readable version of provider type
     * @type {string}
     * @memberof ProviderRelation
     */
    type_human_readable?: string;
}
