pub struct ListStatement { /* private fields */ }Expand description
取引明細リストを取得します。
Implementations§
Source§impl ListStatement
impl ListStatement
Sourcepub fn owner(self, owner: impl Into<ListStatementOwner>) -> Self
pub fn owner(self, owner: impl Into<ListStatementOwner>) -> Self
取引明細の発行対象で絞り込みます。以下の値が指定できます。
| owner | 絞り込み対象 |
|---|---|
| merchant | 加盟店に向けて発行されたもの |
| tenant | テナントに向けて発行されたもの |
Sourcepub fn source_transfer(self, source_transfer: impl Into<String>) -> Self
pub fn source_transfer(self, source_transfer: impl Into<String>) -> Self
取引明細の生成元オブジェクトで絞り込みます。
transferオブジェクトもしくは tenant_transferオブジェクトのIDを指定します。
Sourcepub fn type_(self, type_: impl Into<StatementType>) -> Self
pub fn type_(self, type_: impl Into<StatementType>) -> Self
typeの値で絞り込みます。
Source§impl ListStatement
impl ListStatement
Sourcepub async fn send<C: PayjpClient>(
&self,
client: &C,
) -> Result<<Self as PayjpRequest>::Output, C::Err>
pub async fn send<C: PayjpClient>( &self, client: &C, ) -> Result<<Self as PayjpRequest>::Output, C::Err>
Send the request and return the deserialized response.
Sourcepub fn send_blocking<C: BlockingClient>(
&self,
client: &C,
) -> Result<<Self as PayjpRequest>::Output, C::Err>
pub fn send_blocking<C: BlockingClient>( &self, client: &C, ) -> Result<<Self as PayjpRequest>::Output, C::Err>
Send the request and return the deserialized response, blocking until completion.
pub fn paginate(&self) -> ListPaginator<List<Statement>>
Trait Implementations§
Source§impl Clone for ListStatement
impl Clone for ListStatement
Source§fn clone(&self) -> ListStatement
fn clone(&self) -> ListStatement
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 ListStatement
impl Debug for ListStatement
Source§impl Default for ListStatement
impl Default for ListStatement
Source§impl PayjpRequest for ListStatement
impl PayjpRequest for ListStatement
Source§fn build(&self) -> RequestBuilder
fn build(&self) -> RequestBuilder
Convert the struct into library-agnostic data that can be used by compatible
clients to make API calls.
Source§fn customize(&self) -> CustomizablePayjpRequest<Self::Output>
fn customize(&self) -> CustomizablePayjpRequest<Self::Output>
Convert to a builder allowing per-request customization.
Auto Trait Implementations§
impl Freeze for ListStatement
impl RefUnwindSafe for ListStatement
impl Send for ListStatement
impl Sync for ListStatement
impl Unpin for ListStatement
impl UnwindSafe for ListStatement
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