added creation of account but bad request (400)

This commit is contained in:
2026-03-24 19:44:26 +01:00
parent ef2afb0b58
commit 6ec656fde1
5 changed files with 65 additions and 18 deletions
@@ -0,0 +1,29 @@
/**
* BeReadyBackend
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* the dto used to send an error response to the client
*/
export interface ErrorResponse {
/**
* the http status code sent to the client. default is 400.
*/
statusCode?: number;
/**
* the message for the error response
*/
message?: string;
/**
* the collection of errors for the current context
*/
errors?: { [key: string]: Array<string>; };
}