/** * 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 { DelegatedAccessEncryptionPublicKey } from './DelegatedAccessEncryptionPublicKey'; /** * * @export * @interface DelegatedAccessWalletApiKey */ export interface DelegatedAccessWalletApiKey { /** * * @type {DelegatedAccessEncryptionPublicKey} * @memberof DelegatedAccessWalletApiKey */ encryptionPublicKey: DelegatedAccessEncryptionPublicKey; /** * List of permission scopes granted to this delegated access API key * @type {Array} * @memberof DelegatedAccessWalletApiKey */ scopes: Array; /** * ISO 8601 timestamp of when the delegated access API key expires, or null if it does not expire * @type {Date} * @memberof DelegatedAccessWalletApiKey */ expiresAt?: Date | null; /** * ISO 8601 timestamp of when the delegated access API key was created * @type {Date} * @memberof DelegatedAccessWalletApiKey */ createdAt: Date; /** * ISO 8601 timestamp of when the delegated access API key was last updated * @type {Date} * @memberof DelegatedAccessWalletApiKey */ updatedAt: Date; /** * ISO 8601 timestamp of when the delegated access API key was deleted, or null if active * @type {Date} * @memberof DelegatedAccessWalletApiKey */ deletedAt?: Date | null; } export declare function DelegatedAccessWalletApiKeyFromJSON(json: any): DelegatedAccessWalletApiKey; export declare function DelegatedAccessWalletApiKeyFromJSONTyped(json: any, ignoreDiscriminator: boolean): DelegatedAccessWalletApiKey; export declare function DelegatedAccessWalletApiKeyToJSON(value?: DelegatedAccessWalletApiKey | null): any;