pub struct CreateUnexpectedProblemRequest {
pub text: Option<String>,
}
Expand description
CreateUnexpectedProblemRequest : The request schema for the createUnexpectedProblem operation.
Fields§
§text: Option<String>
The text to be sent to the buyer. Only links related to unexpected problem calls are allowed. Do not include HTML or email addresses. The text must be written in the buyer’s language of preference, which can be retrieved from the GetAttributes operation.
Implementations§
Source§impl CreateUnexpectedProblemRequest
impl CreateUnexpectedProblemRequest
Sourcepub fn new() -> CreateUnexpectedProblemRequest
pub fn new() -> CreateUnexpectedProblemRequest
The request schema for the createUnexpectedProblem operation.
Trait Implementations§
Source§impl Clone for CreateUnexpectedProblemRequest
impl Clone for CreateUnexpectedProblemRequest
Source§fn clone(&self) -> CreateUnexpectedProblemRequest
fn clone(&self) -> CreateUnexpectedProblemRequest
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 Default for CreateUnexpectedProblemRequest
impl Default for CreateUnexpectedProblemRequest
Source§fn default() -> CreateUnexpectedProblemRequest
fn default() -> CreateUnexpectedProblemRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateUnexpectedProblemRequest
impl<'de> Deserialize<'de> for CreateUnexpectedProblemRequest
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
Source§impl PartialEq for CreateUnexpectedProblemRequest
impl PartialEq for CreateUnexpectedProblemRequest
Source§fn eq(&self, other: &CreateUnexpectedProblemRequest) -> bool
fn eq(&self, other: &CreateUnexpectedProblemRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateUnexpectedProblemRequest
Auto Trait Implementations§
impl Freeze for CreateUnexpectedProblemRequest
impl RefUnwindSafe for CreateUnexpectedProblemRequest
impl Send for CreateUnexpectedProblemRequest
impl Sync for CreateUnexpectedProblemRequest
impl Unpin for CreateUnexpectedProblemRequest
impl UnwindSafe for CreateUnexpectedProblemRequest
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