/* Options: Date: 2025-10-27 21:50:29 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: PartnersEdit.* //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="/partners/{Id}", Verbs="PUT") @DataContract public static class PartnersEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long Id = null; @DataMember(Order=3) @Validate(Validator="NotNull") public Long CompaniesId = null; public Long getId() { return Id; } public PartnersEdit setId(Long value) { this.Id = value; return this; } public Long getCompaniesId() { return CompaniesId; } public PartnersEdit setCompaniesId(Long value) { this.CompaniesId = value; return this; } private static Object responseType = PartnersEditResponse.class; public Object getResponseType() { return responseType; } } public static class PartnersEditResponse { @DataMember(Order=1) public Long Id = null; @DataMember(Order=3) public Long CompaniesId = null; @DataMember(Order=4) public ResponseStatus ResponseStatus = null; public Long getId() { return Id; } public PartnersEditResponse setId(Long value) { this.Id = value; return this; } public Long getCompaniesId() { return CompaniesId; } public PartnersEditResponse setCompaniesId(Long value) { this.CompaniesId = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public PartnersEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }