#[non_exhaustive]pub struct ResolveCaseOutputBuilder { /* private fields */ }Expand description
A builder for ResolveCaseOutput.
Implementations§
source§impl ResolveCaseOutputBuilder
impl ResolveCaseOutputBuilder
sourcepub fn initial_case_status(self, input: impl Into<String>) -> Self
pub fn initial_case_status(self, input: impl Into<String>) -> Self
The status of the case when the ResolveCase request was sent.
sourcepub fn set_initial_case_status(self, input: Option<String>) -> Self
pub fn set_initial_case_status(self, input: Option<String>) -> Self
The status of the case when the ResolveCase request was sent.
sourcepub fn final_case_status(self, input: impl Into<String>) -> Self
pub fn final_case_status(self, input: impl Into<String>) -> Self
The status of the case after the ResolveCase request was processed.
sourcepub fn set_final_case_status(self, input: Option<String>) -> Self
pub fn set_final_case_status(self, input: Option<String>) -> Self
The status of the case after the ResolveCase request was processed.
sourcepub fn build(self) -> ResolveCaseOutput
pub fn build(self) -> ResolveCaseOutput
Consumes the builder and constructs a ResolveCaseOutput.
Trait Implementations§
source§impl Clone for ResolveCaseOutputBuilder
impl Clone for ResolveCaseOutputBuilder
source§fn clone(&self) -> ResolveCaseOutputBuilder
fn clone(&self) -> ResolveCaseOutputBuilder
Returns a copy 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 ResolveCaseOutputBuilder
impl Debug for ResolveCaseOutputBuilder
source§impl Default for ResolveCaseOutputBuilder
impl Default for ResolveCaseOutputBuilder
source§fn default() -> ResolveCaseOutputBuilder
fn default() -> ResolveCaseOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ResolveCaseOutputBuilder> for ResolveCaseOutputBuilder
impl PartialEq<ResolveCaseOutputBuilder> for ResolveCaseOutputBuilder
source§fn eq(&self, other: &ResolveCaseOutputBuilder) -> bool
fn eq(&self, other: &ResolveCaseOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.