/* Options: Date: 2025-12-06 13:03:36 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UserUpdateProfileRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/users/update-profile", Verbs="POST") public static class UserUpdateProfileRequest implements IReturn> { public String fullName = null; public String phone = null; public Date birthday = null; public String avatar = null; public String getFullName() { return fullName; } public UserUpdateProfileRequest setFullName(String value) { this.fullName = value; return this; } public String getPhone() { return phone; } public UserUpdateProfileRequest setPhone(String value) { this.phone = value; return this; } public Date getBirthday() { return birthday; } public UserUpdateProfileRequest setBirthday(Date value) { this.birthday = value; return this; } public String getAvatar() { return avatar; } public UserUpdateProfileRequest setAvatar(String value) { this.avatar = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class BaseResponse implements IResponseRequest { public Integer code = null; public String message = null; public CurrentUserResponse data = null; public Integer getCode() { return code; } public BaseResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public BaseResponse setMessage(String value) { this.message = value; return this; } public CurrentUserResponse getData() { return data; } public BaseResponse setData(CurrentUserResponse value) { this.data = value; return this; } } }