/* tslint:disable */
/* eslint-disable */
/**
 * 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 CryptoPaymentDestination
 */
export interface CryptoPaymentDestination {
  /**
   * The destination address
   * @type {string}
   * @memberof CryptoPaymentDestination
   */
  address: string;
  /**
   *
   * @type {string}
   * @memberof CryptoPaymentDestination
   */
  chain: CryptoPaymentDestinationChainEnum;
}

export const CryptoPaymentDestinationChainEnum = {
  Eth: "ETH"
} as const;

export type CryptoPaymentDestinationChainEnum =
  typeof CryptoPaymentDestinationChainEnum[keyof typeof CryptoPaymentDestinationChainEnum];
