/** * 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 RevokeDelegatedAccessWalletResult */ export interface RevokeDelegatedAccessWalletResult { /** * * @type {string} * @memberof RevokeDelegatedAccessWalletResult */ walletId: string; /** * Whether the revocation was successful for this wallet * @type {boolean} * @memberof RevokeDelegatedAccessWalletResult */ success: boolean; /** * Error message if the revocation failed * @type {string} * @memberof RevokeDelegatedAccessWalletResult */ error?: string; } export declare function RevokeDelegatedAccessWalletResultFromJSON(json: any): RevokeDelegatedAccessWalletResult; export declare function RevokeDelegatedAccessWalletResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): RevokeDelegatedAccessWalletResult; export declare function RevokeDelegatedAccessWalletResultToJSON(value?: RevokeDelegatedAccessWalletResult | null): any;