/* Options: Date: 2025-12-06 09:01:53 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TenantsEdit.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/tenants/{Id}", Verbs="PUT") @DataContract public static class TenantsEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public Long mainZonesId = null; public Long getId() { return id; } public TenantsEdit setId(Long value) { this.id = value; return this; } public Long getMainZonesId() { return mainZonesId; } public TenantsEdit setMainZonesId(Long value) { this.mainZonesId = value; return this; } private static Object responseType = TenantsEditResponse.class; public Object getResponseType() { return responseType; } } public static class TenantsEditResponse { @DataMember(Order=1) public Long id = null; @DataMember(Order=2) public Long mainZonesId = null; @DataMember(Order=4) public ResponseStatus responseStatus = null; public Long getId() { return id; } public TenantsEditResponse setId(Long value) { this.id = value; return this; } public Long getMainZonesId() { return mainZonesId; } public TenantsEditResponse setMainZonesId(Long value) { this.mainZonesId = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public TenantsEditResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }