/** * 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 { WaasDelegatedAccessEncryptionPublicKeyType } from './WaasDelegatedAccessEncryptionPublicKeyType'; /** * * @export * @interface WaasDelegationCredentialsRequest */ export interface WaasDelegationCredentialsRequest { /** * A string with a max length of 4096 characters * @type {string} * @memberof WaasDelegationCredentialsRequest */ publicKey: string; /** * * @type {string} * @memberof WaasDelegationCredentialsRequest */ alg?: string; /** * * @type {WaasDelegatedAccessEncryptionPublicKeyType} * @memberof WaasDelegationCredentialsRequest */ type?: WaasDelegatedAccessEncryptionPublicKeyType; } export declare function WaasDelegationCredentialsRequestFromJSON(json: any): WaasDelegationCredentialsRequest; export declare function WaasDelegationCredentialsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasDelegationCredentialsRequest; export declare function WaasDelegationCredentialsRequestToJSON(value?: WaasDelegationCredentialsRequest | null): any;