/* Options: Date: 2025-08-04 03:31:58 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EditUser.* //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="/user/{userid}", Verbs="PUT") public static class EditUser implements IReturn, IPut { public Integer UserId = null; public String PhoneNumber = null; public String DisplayName = null; public String PhoneNumberExtension = null; public Integer PhoneNumberCountryCodeId = null; public String MobilePhoneNumber = null; public Integer MobilePhoneNumberCountryCodeId = null; public String OrganizationUnit = null; public String Position = null; public Integer getUserId() { return UserId; } public EditUser setUserId(Integer value) { this.UserId = value; return this; } public String getPhoneNumber() { return PhoneNumber; } public EditUser setPhoneNumber(String value) { this.PhoneNumber = value; return this; } public String getDisplayName() { return DisplayName; } public EditUser setDisplayName(String value) { this.DisplayName = value; return this; } public String getPhoneNumberExtension() { return PhoneNumberExtension; } public EditUser setPhoneNumberExtension(String value) { this.PhoneNumberExtension = value; return this; } public Integer getPhoneNumberCountryCodeId() { return PhoneNumberCountryCodeId; } public EditUser setPhoneNumberCountryCodeId(Integer value) { this.PhoneNumberCountryCodeId = value; return this; } public String getMobilePhoneNumber() { return MobilePhoneNumber; } public EditUser setMobilePhoneNumber(String value) { this.MobilePhoneNumber = value; return this; } public Integer getMobilePhoneNumberCountryCodeId() { return MobilePhoneNumberCountryCodeId; } public EditUser setMobilePhoneNumberCountryCodeId(Integer value) { this.MobilePhoneNumberCountryCodeId = value; return this; } public String getOrganizationUnit() { return OrganizationUnit; } public EditUser setOrganizationUnit(String value) { this.OrganizationUnit = value; return this; } public String getPosition() { return Position; } public EditUser setPosition(String value) { this.Position = value; return this; } private static Object responseType = ModifyEntityResponse.class; public Object getResponseType() { return responseType; } } public static class ModifyEntityResponse extends ResponseBase { public Integer Id = null; public Integer getId() { return Id; } public ModifyEntityResponse setId(Integer value) { this.Id = value; return this; } } public static class ResponseBase { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ResponseBase setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }