[][src]Struct iyzipay_rust::requests::CreateApmInitializeRequest

pub struct CreateApmInitializeRequest { /* fields omitted */ }

Methods

impl CreateApmInitializeRequest[src]

pub fn new() -> Self[src]

pub fn set_price<T: Into<BigDecimal>>(&mut self, price: T)[src]

pub fn set_paid_price<T: Into<BigDecimal>>(&mut self, paid_price: T)[src]

pub fn set_payment_channel<T: Into<String>>(&mut self, payment_channel: T)[src]

pub fn set_payment_group<T: Into<String>>(&mut self, payment_group: T)[src]

pub fn set_payment_source<T: Into<String>>(&mut self, payment_source: T)[src]

pub fn set_currency<T: Into<String>>(&mut self, currency: T)[src]

pub fn set_merchant_order_id<T: Into<String>>(&mut self, merchant_order_id: T)[src]

pub fn set_country_code<T: Into<String>>(&mut self, country_code: T)[src]

pub fn set_account_holder_name<T: Into<String>>(
    &mut self,
    account_holder_name: T
)
[src]

pub fn set_merchant_callback_url<T: Into<String>>(
    &mut self,
    merchant_callback_url: T
)
[src]

pub fn set_merchant_error_url<T: Into<String>>(&mut self, merchant_error_url: T)[src]

pub fn set_merchant_notification_url<T: Into<String>>(
    &mut self,
    merchant_notification_url: T
)
[src]

pub fn set_apm_type<T: Into<String>>(&mut self, apm_type: T)[src]

pub fn set_basket_id<T: Into<String>>(&mut self, basket_id: T)[src]

pub fn set_buyer<T: Into<Buyer>>(&mut self, buyer: T)[src]

pub fn set_shipping_address<T: Into<Address>>(&mut self, shipping_address: T)[src]

pub fn set_billing_address<T: Into<Address>>(&mut self, billing_address: T)[src]

pub fn set_basket_items<T: Into<Vec<BasketItem>>>(&mut self, basket_items: T)[src]

pub fn price(&self) -> Option<&BigDecimal>[src]

[src]

pub fn payment_channel(&self) -> Option<&String>[src]

pub fn payment_group(&self) -> Option<&String>[src]

pub fn payment_source(&self) -> Option<&String>[src]

pub fn currency(&self) -> Option<&String>[src]

pub fn merchant_order_id(&self) -> Option<&String>[src]

pub fn country_code(&self) -> Option<&String>[src]

pub fn account_holder_name(&self) -> Option<&String>[src]

pub fn merchant_callback_url(&self) -> Option<&String>[src]

pub fn merchant_error_url(&self) -> Option<&String>[src]

pub fn merchant_notification_url(&self) -> Option<&String>[src]

pub fn apm_type(&self) -> Option<&String>[src]

pub fn basket_id(&self) -> Option<&String>[src]

pub fn buyer(&self) -> Option<&Buyer>[src]

pub fn shipping_address(&self) -> Option<&Address>[src]

pub fn billing_address(&self) -> Option<&Address>[src]

pub fn basket_items(&self) -> Option<&Vec<BasketItem>>[src]

Methods from Deref<Target = Request>

pub fn set_conversation_id<T: Into<String>>(&mut self, conversation_id: T)[src]

pub fn conversation_id(&self) -> Option<&String>[src]

pub fn set_locale<T: Into<String>>(&mut self, locale: T)[src]

pub fn locale(&self) -> Option<&String>[src]

Trait Implementations

impl PKISerialize for CreateApmInitializeRequest[src]

impl Default for CreateApmInitializeRequest[src]

impl DerefMut for CreateApmInitializeRequest[src]

impl Deref for CreateApmInitializeRequest[src]

type Target = Request

The resulting type after dereferencing.

impl Debug for CreateApmInitializeRequest[src]

impl Serialize for CreateApmInitializeRequest[src]

impl<'de> Deserialize<'de> for CreateApmInitializeRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T