/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ForbiddenErrorPayload */ export interface ForbiddenErrorPayload { /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof ForbiddenErrorPayload */ walletPublicKey?: string; /** * Email address associated with the forbidden request * @type {string} * @memberof ForbiddenErrorPayload */ email?: string; } export declare function ForbiddenErrorPayloadFromJSON(json: any): ForbiddenErrorPayload; export declare function ForbiddenErrorPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ForbiddenErrorPayload; export declare function ForbiddenErrorPayloadToJSON(value?: ForbiddenErrorPayload | null): any;