pub struct Complaint {
pub id: String,
pub status: BackOfficeStatus,
pub customer_complaint: Option<Box<CustomerComplaint>>,
pub missing_information: Option<Option<Vec<String>>>,
pub decision: Option<Box<ComplaintDecision>>,
pub _links: Option<Vec<Link>>,
}Fields§
§id: String§status: BackOfficeStatus§customer_complaint: Option<Box<CustomerComplaint>>§missing_information: Option<Option<Vec<String>>>indication of missing customer information
decision: Option<Box<ComplaintDecision>>§_links: Option<Vec<Link>>Java Property Name: ‘links’
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Complaint
impl<'de> Deserialize<'de> for Complaint
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 StructuralPartialEq for Complaint
Auto Trait Implementations§
impl Freeze for Complaint
impl RefUnwindSafe for Complaint
impl Send for Complaint
impl Sync for Complaint
impl Unpin for Complaint
impl UnwindSafe for Complaint
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