/** * Devops Essentials response model */ export interface DevopsEssentialsDto { /** * Number of named users currently provisioned for the account * @format int64 */ current_users?: number; /** * Expiry timestamp of the license * @format int64 */ licenseExpiry?: number; /** * License expiration timestamp * @format int64 */ license_expiry_date?: number; /** * License start timestamp * @format int64 */ license_start_date?: number; /** * Maximum named users that can be provisioned on the account */ max_users_allowed?: number; /** * Number of named users provisioned for a given account * @format int64 */ namedUser?: number; /** * Current status of the Stripe subscription */ subscription_status?: 'active' | 'canceled' | 'incomplete' | 'incomplete_expired' | 'past_due' | 'paused' | 'trialing' | 'unknown' | 'unpaid'; /** * Maximum named users that can be provisioned on an account */ totalAvailable?: number; }