/* Options: Date: 2025-05-04 23:06:23 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: NewBillable.* //ExcludeTypes: //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.*; public class dtos { /** * Report/create a new billable */ @Route(Path="/billables", Verbs="POST") @Api(Description="Report/create a new billable") public static class NewBillable implements IReturnVoid, IPost { /** * The account to associate the billable with */ @ApiMember(Description="The account to associate the billable with") public String accountId = null; /** * The customer to associate the billable with */ @ApiMember(Description="The customer to associate the billable with") public String customerId = null; /** * The session ID to associate the billable with. You must specify either this or (AccountId + CustomerID) */ @ApiMember(Description="The session ID to associate the billable with. You must specify either this or (AccountId + CustomerID)") public String sessionId = null; /** * The call SID to report */ @ApiMember(Description="The call SID to report") public String callSid = null; public String getAccountId() { return accountId; } public NewBillable setAccountId(String value) { this.accountId = value; return this; } public String getCustomerId() { return customerId; } public NewBillable setCustomerId(String value) { this.customerId = value; return this; } public String getSessionId() { return sessionId; } public NewBillable setSessionId(String value) { this.sessionId = value; return this; } public String getCallSid() { return callSid; } public NewBillable setCallSid(String value) { this.callSid = value; return this; } } }