/* Options: Date: 2024-07-03 13:14:43 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UnSyncedUsers.* //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="/unsyncedusers/", Verbs="GET") public static class UnSyncedUsers implements IReturn { /** * Id of the company */ @ApiMember(Description="Id of the company", IsRequired=true, ParameterType="path") public UUID CompanyId = null; public UUID getCompanyId() { return CompanyId; } public UnSyncedUsers setCompanyId(UUID value) { this.CompanyId = value; return this; } private static Object responseType = UnSyncedUsersResponse.class; public Object getResponseType() { return responseType; } } public static class UnSyncedUsersResponse { public UUID CompanyId = null; public ArrayList UnSyncedUsers = null; public UUID getCompanyId() { return CompanyId; } public UnSyncedUsersResponse setCompanyId(UUID value) { this.CompanyId = value; return this; } public ArrayList getUnSyncedUsers() { return UnSyncedUsers; } public UnSyncedUsersResponse setUnSyncedUsers(ArrayList value) { this.UnSyncedUsers = value; return this; } } public static class UnSyncedUserResponse { public String Email = null; public Boolean InDb = null; public Boolean InKeyCloak = null; public Boolean ErrorGettingValuesFromKeyCloak = null; public String getEmail() { return Email; } public UnSyncedUserResponse setEmail(String value) { this.Email = value; return this; } public Boolean isInDb() { return InDb; } public UnSyncedUserResponse setInDb(Boolean value) { this.InDb = value; return this; } public Boolean isInKeyCloak() { return InKeyCloak; } public UnSyncedUserResponse setInKeyCloak(Boolean value) { this.InKeyCloak = value; return this; } public Boolean isErrorGettingValuesFromKeyCloak() { return ErrorGettingValuesFromKeyCloak; } public UnSyncedUserResponse setErrorGettingValuesFromKeyCloak(Boolean value) { this.ErrorGettingValuesFromKeyCloak = value; return this; } } }