pub struct AccountBusinessInformation {
pub address: Option<AccountAddress>,
pub customer_service: Option<AccountCustomerService>,
pub korean_business_registration_number: Option<String>,
pub phone_number: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§address: Option<AccountAddress>The address of the business.
customer_service: Option<AccountCustomerService>The customer service information of the business.
korean_business_registration_number: Option<String>The 10-digit Korean business registration number separated with dashes in the format: XXX-XX-XXXXX. This field will only be updated if explicitly set.
phone_number: Option<String>The phone number of the business.
Trait Implementations§
Source§impl Clone for AccountBusinessInformation
impl Clone for AccountBusinessInformation
Source§fn clone(&self) -> AccountBusinessInformation
fn clone(&self) -> AccountBusinessInformation
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 AccountBusinessInformation
impl Debug for AccountBusinessInformation
Source§impl Default for AccountBusinessInformation
impl Default for AccountBusinessInformation
Source§fn default() -> AccountBusinessInformation
fn default() -> AccountBusinessInformation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountBusinessInformation
impl<'de> Deserialize<'de> for AccountBusinessInformation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for AccountBusinessInformation
Auto Trait Implementations§
impl Freeze for AccountBusinessInformation
impl RefUnwindSafe for AccountBusinessInformation
impl Send for AccountBusinessInformation
impl Sync for AccountBusinessInformation
impl Unpin for AccountBusinessInformation
impl UnwindSafe for AccountBusinessInformation
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