pub struct Account {
pub created: i64,
pub email: String,
pub id: AccountId,
pub merchant: Merchant,
pub team_id: Option<String>,
}Expand description
Accountオブジェクト
For more details see <https://pay.jp/docs/api>.
Fields§
§created: i64このアカウント作成時のUTCタイムスタンプ
email: Stringメールアドレス
id: AccountIdacct_で始まる一意なオブジェクトを示す文字列
merchant: Merchant§team_id: Option<String>このアカウントに紐付くチームID
Trait Implementations§
Source§impl Deserialize for Account
impl Deserialize for Account
Auto Trait Implementations§
impl Freeze for Account
impl RefUnwindSafe for Account
impl Send for Account
impl Sync for Account
impl Unpin for Account
impl UnwindSafe for Account
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more