/* Options: Date: 2024-10-18 04:36:18 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetUserInformation.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/users/me/info") public static class GetUserInformation implements IReturn { private static Object responseType = UserInformation.class; public Object getResponseType() { return responseType; } } public static class UserInformation { public Integer ID = null; public String DisplayName = null; public Integer getId() { return ID; } public UserInformation setId(Integer value) { this.ID = value; return this; } public String getDisplayName() { return DisplayName; } public UserInformation setDisplayName(String value) { this.DisplayName = value; return this; } } }