pub struct ValidateCustomerRequest {
pub channel_id: String,
pub identifier: String,
pub package_id: i64,
}Expand description
Request body to validate a customer’s identifier at a biller.
Server type: ValidationRequest.
Fields§
§channel_id: StringYour channel id, as issued by Wema.
identifier: StringThe customer identifier to validate (meter no., smartcard, phone, …).
package_id: i64The package being paid for (see BillPackage::id).
Trait Implementations§
Source§impl Clone for ValidateCustomerRequest
impl Clone for ValidateCustomerRequest
Source§fn clone(&self) -> ValidateCustomerRequest
fn clone(&self) -> ValidateCustomerRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ValidateCustomerRequest
impl Debug for ValidateCustomerRequest
Source§impl<'de> Deserialize<'de> for ValidateCustomerRequest
impl<'de> Deserialize<'de> for ValidateCustomerRequest
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
Auto Trait Implementations§
impl Freeze for ValidateCustomerRequest
impl RefUnwindSafe for ValidateCustomerRequest
impl Send for ValidateCustomerRequest
impl Sync for ValidateCustomerRequest
impl Unpin for ValidateCustomerRequest
impl UnsafeUnpin for ValidateCustomerRequest
impl UnwindSafe for ValidateCustomerRequest
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