pub struct TransactionSplitEndpoints<'a> { /* private fields */ }
Expand description

A struct to hold all the functions of the transaction split API route

Implementations§

source§

impl<'a> TransactionSplitEndpoints<'a>

source

pub fn new(key: &'a str) -> TransactionSplitEndpoints<'a>

Constructor for the Transaction Split object

source

pub async fn create_transaction_split( &self, split_body: CreateTransactionSplitBody ) -> PaystackResult<TransactionSplitResponse>

Create a split payment on your integration.

This method takes a TransactionSplit object as a parameter.

source

pub async fn list_transaction_splits( &self, split_name: Option<&str>, split_active: Option<bool> ) -> PaystackResult<TransactionSplitListResponse>

List the transaction splits available on your integration

Takes in the following parameters: - split_name: (Optional) name of the split to retrieve. - split_active: (Optional) status of the split to retrieve.

source

pub async fn fetch_transaction_split( &self, split_id: &str ) -> PaystackResult<TransactionSplitResponse>

Get details of a split on your integration.

Takes in the following parameter: - split_id: Id of the transaction split.

source

pub async fn update_transaction_split( &self, split_id: &str, body: UpdateTransactionSplitBody ) -> PaystackResult<TransactionSplitResponse>

Update a transaction split details on your integration.

Takes in the following parameters: - split_id: Id of the transaction split. - split_name: updated name for the split. - split_status: updated states for the split. - bearer_type: (Optional) updated bearer type for the split. - bearer_subaccount: (Optional) updated bearer subaccount for the split

source

pub async fn add_or_update_subaccount_split( &self, split_id: &str, body: SubaccountBody ) -> PaystackResult<TransactionSplitResponse>

Add a Subaccount to a Transaction Split, or update the share of an existing Subaccount in a Transaction Split

Takes in the following parameters: - split_id: Id of the transaction split to update. - body: Subaccount to add to the transaction split.

source

pub async fn remove_subaccount_from_transaction_split( &self, split_id: &str, subaccount: DeleteSubAccountBody ) -> PaystackResult<ResponseWithoutData>

Remove a subaccount from a transaction split.

Takes in the following parameters - split_id: Id of the transaction split - subaccount: subaccount code to remove

Trait Implementations§

source§

impl<'a> Clone for TransactionSplitEndpoints<'a>

source§

fn clone(&self) -> TransactionSplitEndpoints<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for TransactionSplitEndpoints<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more