/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { Identity } from "./identity";
/**
 *
 * @export
 * @interface TransferRequestSourceWalletLocation
 */
export interface TransferRequestSourceWalletLocation {
    /**
     *
     * @type {string}
     * @memberof TransferRequestSourceWalletLocation
     */
    type: TransferRequestSourceWalletLocationTypeEnum;
    /**
     * The id of the wallet.
     * @type {string}
     * @memberof TransferRequestSourceWalletLocation
     */
    id: string;
    /**
     *
     * @type {Array<Identity>}
     * @memberof TransferRequestSourceWalletLocation
     */
    identities?: Array<Identity>;
}
export declare const TransferRequestSourceWalletLocationTypeEnum: {
    readonly Wallet: "wallet";
};
export declare type TransferRequestSourceWalletLocationTypeEnum = typeof TransferRequestSourceWalletLocationTypeEnum[keyof typeof TransferRequestSourceWalletLocationTypeEnum];
