/* Options: Date: 2025-10-27 21:49:39 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ClientsEdit.* //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="/clients/{Id}", Verbs="PUT") @DataContract public static class ClientsEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long Id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public Integer TenantsId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public Long CompaniesId = null; public Long getId() { return Id; } public ClientsEdit setId(Long value) { this.Id = value; return this; } public Integer getTenantsId() { return TenantsId; } public ClientsEdit setTenantsId(Integer value) { this.TenantsId = value; return this; } public Long getCompaniesId() { return CompaniesId; } public ClientsEdit setCompaniesId(Long value) { this.CompaniesId = value; return this; } private static Object responseType = ClientsEditResponse.class; public Object getResponseType() { return responseType; } } public static class ClientsEditResponse { @DataMember(Order=1) public Long Id = null; @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) public Long CompaniesId = null; @DataMember(Order=5) public ResponseStatus ResponseStatus = null; public Long getId() { return Id; } public ClientsEditResponse setId(Long value) { this.Id = value; return this; } public Integer getTenantsId() { return TenantsId; } public ClientsEditResponse setTenantsId(Integer value) { this.TenantsId = value; return this; } public Long getCompaniesId() { return CompaniesId; } public ClientsEditResponse setCompaniesId(Long value) { this.CompaniesId = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public ClientsEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }