pub struct StatementTerm {
pub charge_count: u64,
pub closed: bool,
pub dispute_count: u64,
pub end_at: Option<i64>,
pub id: StatementId,
pub livemode: bool,
pub object: StatementTermObject,
pub refund_count: u64,
pub start_at: i64,
}Fields§
§charge_count: u64この区間内で確定された支払いの数
closed: bool締め処理が完了済みならTrue
dispute_count: u64この区間内で確定されたチャージバック/チャージバックキャンセルの数
end_at: Option<i64>区間終了時刻のタイムスタンプ。Termが表す区間はstart_at以上end_at未満の範囲となります。翌サイクルのTermの場合nullを返します。.
id: StatementIdtm_で始まる一意なオブジェクトを示す文字列
livemode: bool本番環境かどうか。
object: StatementTermObject固定文字列
refund_count: u64この区間内で確定された返金の数
start_at: i64区間開始時刻のタイムスタンプ
Trait Implementations§
Source§impl Clone for StatementTerm
impl Clone for StatementTerm
Source§fn clone(&self) -> StatementTerm
fn clone(&self) -> StatementTerm
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StatementTerm
impl Debug for StatementTerm
Source§impl Deserialize for StatementTerm
impl Deserialize for StatementTerm
Source§impl FromValueOpt for StatementTerm
impl FromValueOpt for StatementTerm
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for StatementTerm
impl ObjectDeser for StatementTerm
Auto Trait Implementations§
impl Freeze for StatementTerm
impl RefUnwindSafe for StatementTerm
impl Send for StatementTerm
impl Sync for StatementTerm
impl Unpin for StatementTerm
impl UnwindSafe for StatementTerm
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