UNPKG

@devopness/sdk-js

Version:

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

56 lines (55 loc) 1.37 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. */ import { Credits } from './credits'; /** * The user\'s active subscription balance * @export * @interface SubscriptionBalance */ export interface SubscriptionBalance { /** * * @type {Credits} * @memberof SubscriptionBalance */ credits?: Credits; /** * The unit of measurement to count credits * @type {string} * @memberof SubscriptionBalance */ unit?: string; /** * The date and time the subscription plan starts * @type {string} * @memberof SubscriptionBalance */ billing_period_started_at?: string; /** * The date and time the subscription plan ends * @type {string} * @memberof SubscriptionBalance */ billing_period_ends_at?: string; /** * The date and time when the record was created * @type {string} * @memberof SubscriptionBalance */ created_at?: string; /** * The date and time when the record was last updated * @type {string} * @memberof SubscriptionBalance */ updated_at?: string; }