/* 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.
 */

// May contain unused imports in some cases
// @ts-ignore
import { ExternalFiatAccountStatus } from "./external-fiat-account-status";

/**
 *
 * @export
 * @interface CbitFiatAccountResponse
 */
export interface CbitFiatAccountResponse {
  /**
   * Unique system generated identifier for the entity.
   * @type {string}
   * @memberof CbitFiatAccountResponse
   */
  id: string;
  /**
   *
   * @type {ExternalFiatAccountStatus}
   * @memberof CbitFiatAccountResponse
   */
  status: ExternalFiatAccountStatus;
  /**
   * Tracking ref that needs to be set in the public description field when you send the funds to Circle CBIT wallet.
   * @type {string}
   * @memberof CbitFiatAccountResponse
   */
  trackingRef: string;
  /**
   * Your CBIT wallet address.
   * @type {string}
   * @memberof CbitFiatAccountResponse
   */
  walletAddress: string;
  /**
   * ISO-8601 UTC date/time format.
   * @type {string}
   * @memberof CbitFiatAccountResponse
   */
  createDate: string;
  /**
   * ISO-8601 UTC date/time format.
   * @type {string}
   * @memberof CbitFiatAccountResponse
   */
  updateDate: string;
}
