pub struct GetSolicitationActionResponse {
pub _links: Option<Box<GetSolicitationActionResponseLinks>>,
pub _embedded: Option<Box<GetSolicitationActionResponseEmbedded>>,
pub payload: Option<Box<SolicitationsAction>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetSolicitationActionResponse : Describes a solicitation action that can be taken for an order. Provides a JSON Hypertext Application Language (HAL) link to the JSON schema document that describes the expected input.
Fields§
§_links: Option<Box<GetSolicitationActionResponseLinks>>§_embedded: Option<Box<GetSolicitationActionResponseEmbedded>>§payload: Option<Box<SolicitationsAction>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl GetSolicitationActionResponse
impl GetSolicitationActionResponse
Sourcepub fn new() -> GetSolicitationActionResponse
pub fn new() -> GetSolicitationActionResponse
Describes a solicitation action that can be taken for an order. Provides a JSON Hypertext Application Language (HAL) link to the JSON schema document that describes the expected input.
Trait Implementations§
Source§impl Clone for GetSolicitationActionResponse
impl Clone for GetSolicitationActionResponse
Source§fn clone(&self) -> GetSolicitationActionResponse
fn clone(&self) -> GetSolicitationActionResponse
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 GetSolicitationActionResponse
impl Default for GetSolicitationActionResponse
Source§fn default() -> GetSolicitationActionResponse
fn default() -> GetSolicitationActionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSolicitationActionResponse
impl<'de> Deserialize<'de> for GetSolicitationActionResponse
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 GetSolicitationActionResponse
impl PartialEq for GetSolicitationActionResponse
Source§fn eq(&self, other: &GetSolicitationActionResponse) -> bool
fn eq(&self, other: &GetSolicitationActionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetSolicitationActionResponse
Auto Trait Implementations§
impl Freeze for GetSolicitationActionResponse
impl RefUnwindSafe for GetSolicitationActionResponse
impl Send for GetSolicitationActionResponse
impl Sync for GetSolicitationActionResponse
impl Unpin for GetSolicitationActionResponse
impl UnsafeUnpin for GetSolicitationActionResponse
impl UnwindSafe for GetSolicitationActionResponse
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