/**
 * 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 { BillingPlan } from './billing-plan';
/**
 *
 * @export
 * @interface BillingPlansOptionsRelation
 */
export interface BillingPlansOptionsRelation {
    /**
     * Product name of the plan
     * @type {string}
     * @memberof BillingPlansOptionsRelation
     */
    name: string;
    /**
     * A short text describing the target audience of the product
     * @type {string}
     * @memberof BillingPlansOptionsRelation
     */
    hint: string | null;
    /**
     * The list of plans available for billing
     * @type {Array<BillingPlan>}
     * @memberof BillingPlansOptionsRelation
     */
    plans: Array<BillingPlan>;
}
