pub mod account;
pub mod order;
pub mod withdraws_jpy;
use crate::private::account::Account;
use crate::private::order::Order;
use crate::private::withdraws_jpy::WithdrawsJpy;
pub struct Private {
pub order: Order,
pub account: Account,
pub withdraws_jpy: WithdrawsJpy,
}