UNPKG

@devopness/sdk-js

Version:

Devopness API JS/TS SDK - Painless essential DevOps to everyone

49 lines (48 loc) 1.07 kB
/** * 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. */ /** * A plan available for billing * @export * @interface BillingPlan */ export interface BillingPlan { /** * The ID of the billing plan * @type {number} * @memberof BillingPlan */ id?: number; /** * The provider ID of the billing plan * @type {string} * @memberof BillingPlan */ provider_plan_id?: string; /** * The price of the billing plan * @type {number} * @memberof BillingPlan */ price?: number; /** * The credit limit of the billing plan * @type {number} * @memberof BillingPlan */ credit_limit?: number; /** * The billing period of the billing plan * @type {string} * @memberof BillingPlan */ billing_period?: string; }