pub struct ListCharge { /* private fields */ }Expand description
生成した支払い情報のリストを取得します。
Implementations§
Source§impl ListCharge
impl ListCharge
Sourcepub fn subscription(self, subscription: impl Into<String>) -> Self
pub fn subscription(self, subscription: impl Into<String>) -> Self
絞り込みたい定期課金ID
Sourcepub fn tenant(self, tenant: impl Into<String>) -> Self
pub fn tenant(self, tenant: impl Into<String>) -> Self
PAY.JP Platformのみ指定可能
絞り込みたいテナントID
Sourcepub fn term(self, term: impl Into<String>) -> Self
pub fn term(self, term: impl Into<String>) -> Self
入金管理オブジェクトの刷新に伴い、2024/06/01以降に提供されます。.
絞り込みたいTermのID
Source§impl ListCharge
impl ListCharge
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<Charge>>
Trait Implementations§
Source§impl Clone for ListCharge
impl Clone for ListCharge
Source§fn clone(&self) -> ListCharge
fn clone(&self) -> ListCharge
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 ListCharge
impl Debug for ListCharge
Source§impl Default for ListCharge
impl Default for ListCharge
Source§impl PayjpRequest for ListCharge
impl PayjpRequest for ListCharge
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 ListCharge
impl RefUnwindSafe for ListCharge
impl Send for ListCharge
impl Sync for ListCharge
impl Unpin for ListCharge
impl UnwindSafe for ListCharge
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