pub struct Statement {
pub balance_id: Option<String>,
pub created: i64,
pub id: StatementId,
pub items: Vec<StatementItem>,
pub livemode: bool,
pub net: i64,
pub tenant_id: Option<String>,
pub term: Option<StatementTerm>,
pub title: Option<String>,
pub type_: StatementType,
pub updated: i64,
}Expand description
Statementオブジェクト
For more details see <https://pay.jp/docs/api>.
Fields§
§balance_id: Option<String>このStatementが関連付けられているBalanceのID
created: i64作成時刻のUTCタイムスタンプ
id: StatementIdオブジェクトのユニークID
items: Vec<StatementItem>statement_itemオブジェクトのリスト
livemode: boollivemodeオブジェクトならtrue
net: i64含まれるstatement_itemの金額合計
tenant_id: Option<String>オブジェクトを所有するTenantのID
term: Option<StatementTerm>§title: Option<String>取引明細のタイトル
type_: StatementType取引明細の区分
updated: i64更新時刻のUTCタイムスタンプ
Trait Implementations§
Source§impl Deserialize for Statement
impl Deserialize for Statement
Auto Trait Implementations§
impl Freeze for Statement
impl RefUnwindSafe for Statement
impl Send for Statement
impl Sync for Statement
impl Unpin for Statement
impl UnwindSafe for Statement
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