/** * 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. */ /** * Value limits for the policy rule * @export * @interface WaasPolicyRuleValueLimit */ export interface WaasPolicyRuleValueLimit { /** * Target asset address. If undefined, refers to native token (e.g., ETH) * @type {string} * @memberof WaasPolicyRuleValueLimit */ asset?: string | null; /** * Maximum value per function call (as string to handle bigint) * @type {string} * @memberof WaasPolicyRuleValueLimit */ maxPerCall?: string; /** * Cumulative value limit (as string to handle bigint) * @type {string} * @memberof WaasPolicyRuleValueLimit */ totalLimit?: string; } export declare function WaasPolicyRuleValueLimitFromJSON(json: any): WaasPolicyRuleValueLimit; export declare function WaasPolicyRuleValueLimitFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasPolicyRuleValueLimit; export declare function WaasPolicyRuleValueLimitToJSON(value?: WaasPolicyRuleValueLimit | null): any;