/** * 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. */ import { ErrorMessageWithCode } from './ErrorMessageWithCode'; import { ForbiddenErrorPayload } from './ForbiddenErrorPayload'; /** * * @export * @interface ForbiddenWithErrorAndPayload */ export interface ForbiddenWithErrorAndPayload { /** * * @type {ErrorMessageWithCode} * @memberof ForbiddenWithErrorAndPayload */ error?: ErrorMessageWithCode; /** * * @type {ForbiddenErrorPayload} * @memberof ForbiddenWithErrorAndPayload */ payload?: ForbiddenErrorPayload; } export declare function ForbiddenWithErrorAndPayloadFromJSON(json: any): ForbiddenWithErrorAndPayload; export declare function ForbiddenWithErrorAndPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ForbiddenWithErrorAndPayload; export declare function ForbiddenWithErrorAndPayloadToJSON(value?: ForbiddenWithErrorAndPayload | null): any;