/* Options: Date: 2025-09-14 05:46:01 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.trackunit.com/public //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateContact.* //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="/UpdateContact", Verbs="GET POST") // @Route(Path="/UpdateContact/{Id}", Verbs="GET POST") // @Route(Path="/Contact", Verbs="PUT") // @Route(Path="/Contact/{Id}", Verbs="PUT") @DataContract public static class UpdateContact implements IReturn { @DataMember public String id = null; @DataMember public String name = null; @DataMember public String email = null; @DataMember public String phone = null; @DataMember public String mobile = null; public String getId() { return id; } public UpdateContact setId(String value) { this.id = value; return this; } public String getName() { return name; } public UpdateContact setName(String value) { this.name = value; return this; } public String getEmail() { return email; } public UpdateContact setEmail(String value) { this.email = value; return this; } public String getPhone() { return phone; } public UpdateContact setPhone(String value) { this.phone = value; return this; } public String getMobile() { return mobile; } public UpdateContact setMobile(String value) { this.mobile = value; return this; } private static Object responseType = UpdateContactResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class UpdateContactResponse { @DataMember public ResponseStatus responseStatus = null; public ResponseStatus getResponseStatus() { return responseStatus; } public UpdateContactResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }