/** * 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 { WalletAddressType } from './WalletAddressType'; /** * An additional address associated with a wallet. * @export * @interface WalletAdditionalAddress */ export interface WalletAdditionalAddress { /** * An address associated with a wallet. * @type {string} * @memberof WalletAdditionalAddress */ address: string; /** * The public key associated with the address. * @type {string} * @memberof WalletAdditionalAddress */ publicKey?: string; /** * * @type {WalletAddressType} * @memberof WalletAdditionalAddress */ type: WalletAddressType; } export declare function WalletAdditionalAddressFromJSON(json: any): WalletAdditionalAddress; export declare function WalletAdditionalAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletAdditionalAddress; export declare function WalletAdditionalAddressToJSON(value?: WalletAdditionalAddress | null): any;