/* Options: Date: 2024-07-03 12:27:33 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateUser.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export enum KeyCloakRealm { BookMore = 1, BookMoreAdmin = 2, SuperAdmin = 3, } export class UpdateCustomerProfile { public Firstname: string; public Lastname: string; public Phone: string; public Email: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UpdateAdminProfile { public Firstname: string; public Lastname: string; public Phone: string; public Email: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UserProfileResponse { public Id: string; public Firstname: string; public Lastname: string; public Phone: string; public Email: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class AdminProfile { public CompanyId: string; public Id: string; public Firstname: string; public Lastname: string; public Email: string; public WorkerId: string; public Phone: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UpdateUserResponse { public ResponseStatus: Object; /** @description The user id for your profile. */ // @ApiMember(Description="The user id for your profile.", IsRequired=true) public UserId: string; public UserProfile: UserProfileResponse; public AdminProfile: AdminProfile; public IsSentConfirmationUpdateEmail?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/users", "PUT") // @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") export class UpdateUser implements IReturn { /** @description The user id for your profile. */ // @ApiMember(Description="The user id for your profile.") public UserId?: string; public NewEmail: string; public UserProfile: UpdateCustomerProfile; public AdminProfile: UpdateAdminProfile; /** @description The user realm for identity server. BookMore = 1, BookMoreAdmin = 2 */ // @ApiMember(Description="The user realm for identity server. BookMore = 1, BookMoreAdmin = 2 ", IsRequired=true) public Realm: KeyCloakRealm; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateUser'; } public getMethod() { return 'PUT'; } public createResponse() { return new UpdateUserResponse(); } }