[][src]Struct iyzipay_rust::requests::CreateSubMerchantRequest

pub struct CreateSubMerchantRequest { /* fields omitted */ }

Methods

impl CreateSubMerchantRequest[src]

pub fn new() -> Self[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn sub_merchant_type(&self) -> Option<&String>[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 CreateSubMerchantRequest[src]

impl Default for CreateSubMerchantRequest[src]

impl DerefMut for CreateSubMerchantRequest[src]

impl Deref for CreateSubMerchantRequest[src]

type Target = Request

The resulting type after dereferencing.

impl Debug for CreateSubMerchantRequest[src]

impl Serialize for CreateSubMerchantRequest[src]

impl<'de> Deserialize<'de> for CreateSubMerchantRequest[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