/** * 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 { WaasPolicyRule } from './WaasPolicyRule'; /** * * @export * @interface WaasPolicyResponse */ export interface WaasPolicyResponse { /** * Message describing the operation result * @type {string} * @memberof WaasPolicyResponse */ message?: string; /** * Unique identifier for the wallet policy * @type {string} * @memberof WaasPolicyResponse */ policyId: string; /** * * @type {string} * @memberof WaasPolicyResponse */ projectEnvironmentId: string; /** * ISO 8601 timestamp of when the policy was created * @type {Date} * @memberof WaasPolicyResponse */ createdAt: Date; /** * ISO 8601 timestamp of when the policy was last updated * @type {Date} * @memberof WaasPolicyResponse */ updatedAt: Date; /** * List of policy rule objects defining allowed or denied wallet operations * @type {Array} * @memberof WaasPolicyResponse */ policyContent: Array; } export declare function WaasPolicyResponseFromJSON(json: any): WaasPolicyResponse; export declare function WaasPolicyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasPolicyResponse; export declare function WaasPolicyResponseToJSON(value?: WaasPolicyResponse | null): any;