[][src]Struct iyzipay_rust::requests::CreateBkmInitializeRequest

pub struct CreateBkmInitializeRequest { /* fields omitted */ }

Implementations

impl CreateBkmInitializeRequest[src]

pub fn new() -> Self[src]

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

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

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

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

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

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

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

pub fn set_callback_url<S: Into<String>>(&mut self, callback_url: S)[src]

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

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

pub fn set_enabled_installments<S: Into<Vec<u8>>>(
    &mut self,
    enabled_installments: S
)
[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 Debug for CreateBkmInitializeRequest[src]

impl Default for CreateBkmInitializeRequest[src]

impl Deref for CreateBkmInitializeRequest[src]

type Target = Request

The resulting type after dereferencing.

impl DerefMut for CreateBkmInitializeRequest[src]

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

impl PKISerialize for CreateBkmInitializeRequest[src]

impl Serialize for CreateBkmInitializeRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,