/** * Daytona Billing API * Daytona Billing API * * The version of the OpenAPI document: v0.0.0-dev * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { AutomaticTopUp } from './automatic-top-up'; import type { BillingType } from './billing-type'; export interface OrganizationWallet { 'automaticTopUp'?: AutomaticTopUp; 'balanceCents'?: number; 'billingType'?: BillingType; 'creditCardConnected'?: boolean; 'hasFailedOrPendingInvoice'?: boolean; 'name'?: string; 'ongoingBalanceCents'?: number; }