/* Options: Date: 2024-11-10 19:42:13 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteAddress.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * Delete the specified address */ @Route(Path="/addresses/{addressId}", Verbs="DELETE") @Api(Description="Delete the specified address") public static class DeleteAddress implements IReturnVoid { public String accountId = null; /** * The ID of the address you want to delete */ @ApiMember(Description="The ID of the address you want to delete") public String addressId = null; public String getAccountId() { return accountId; } public DeleteAddress setAccountId(String value) { this.accountId = value; return this; } public String getAddressId() { return addressId; } public DeleteAddress setAddressId(String value) { this.addressId = value; return this; } } }