/* Options: Date: 2025-05-04 23:30:43 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PatchAccount.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Update the specified account details */ @Route(Path="/accounts/{accountId}", Verbs="PATCH") @Api(Description="Update the specified account details") open class PatchAccount : IReturn, IPatch { /** * The ID of the account you want to update */ @ApiMember(Description="The ID of the account you want to update") open var accountId:String? = null /** * The new name for the account */ @ApiMember(Description="The new name for the account") open var name:String? = null /** * The max number of phone numbers this account can have */ @ApiMember(Description="The max number of phone numbers this account can have") open var maxPhoneNumbers:Int? = null /** * The ID of the file to use for a logo on the dashboard */ @ApiMember(Description="The ID of the file to use for a logo on the dashboard") open var logoId:String? = null /** * Updated billing settings for this account */ @ApiMember(Description="Updated billing settings for this account") open var billingSettings:BillingSettings? = null companion object { private val responseType = AccountInfo::class.java } override fun getResponseType(): Any? = PatchAccount.responseType } open class AccountInfo : EntityInfo() { /** * The name of this account */ @ApiMember(Description="The name of this account") open var name:String? = null /** * The ID of this account's parent */ @ApiMember(Description="The ID of this account's parent") open var parentAccountId:String? = null /** * The twilio account SID */ @ApiMember(Description="The twilio account SID") open var twilioAccountSid:String? = null /** * The ancestors of this account. Useful for breadcrumbs */ @ApiMember(Description="The ancestors of this account. Useful for breadcrumbs") open var ancestorIds:ArrayList? = null /** * The max number of phone numbers this account can have */ @ApiMember(Description="The max number of phone numbers this account can have") open var maxPhoneNumbers:Int? = null /** * This account is BYOA */ @ApiMember(Description="This account is BYOA") open var isBYOA:Boolean? = null /** * TrustHub Profile Sid */ @ApiMember(Description="TrustHub Profile Sid") open var trustHubProfileSid:String? = null /** * The ID of the logo file */ @ApiMember(Description="The ID of the logo file") open var logoId:String? = null /** * The URI of the logo file */ @ApiMember(Description="The URI of the logo file") open var logoUri:String? = null /** * The billing settings for this account */ @ApiMember(Description="The billing settings for this account") open var billingSettings:BillingSettings? = null } open class BillingSettings { open var base:BillingItem? = null open var localNumbers:BillingItem? = null open var tollFreeNumbers:BillingItem? = null open var inboundVoiceCalls:BillingItem? = null open var outboundVoiceCalls:BillingItem? = null open var inboundFaxes:BillingItem? = null open var outboundFaxes:BillingItem? = null open var inboundSmsMessages:BillingItem? = null open var outboundSmsMessages:BillingItem? = null open var aiInsights:BillingItem? = null open var aiLiveMinutes:BillingItem? = null } open class EntityInfo { /** * The ID of the object */ @ApiMember(Description="The ID of the object") open var id:String? = null /** * The date the object was created */ @ApiMember(Description="The date the object was created") open var dateCreated:String? = null /** * The date the object was last modified */ @ApiMember(Description="The date the object was last modified") open var dateLastModified:String? = null /** * The user that created this object */ @ApiMember(Description="The user that created this object") open var createdBy:String? = null /** * The user that last modified this object */ @ApiMember(Description="The user that last modified this object") open var lastModifiedBy:String? = null } open class BillingItem { open var baseCost:Double? = null open var rawUnitMultiplier:Double? = null open var unitCost:Double? = null open var allowance:Int? = null }