/* Options: Date: 2025-05-04 22:32:36 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: AppSendFax.* //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 { @Route(Path="/portal/fax", Verbs="POST") public static class AppSendFax implements IReturnVoid { public String accountId = null; public String customerId = null; public String endpointId = null; public String destination = null; public String notificationEmail = null; public String getAccountId() { return accountId; } public AppSendFax setAccountId(String value) { this.accountId = value; return this; } public String getCustomerId() { return customerId; } public AppSendFax setCustomerId(String value) { this.customerId = value; return this; } public String getEndpointId() { return endpointId; } public AppSendFax setEndpointId(String value) { this.endpointId = value; return this; } public String getDestination() { return destination; } public AppSendFax setDestination(String value) { this.destination = value; return this; } public String getNotificationEmail() { return notificationEmail; } public AppSendFax setNotificationEmail(String value) { this.notificationEmail = value; return this; } } }