pub trait AnswerShippingQuerySetters: HasPayload<Payload = AnswerShippingQuery> + Sized {
    fn shipping_query_id<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } fn ok(self, value: bool) -> Self { ... } fn shipping_options<T>(self, value: T) -> Self
    where
        T: IntoIterator<Item = <Vec<ShippingOption, Global> as IntoIterator>::Item>
, { ... } fn error_message<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } }
Expand description

Setters for fields of AnswerShippingQuery

Provided Methods§

Setter for shipping_query_id field.

Setter for ok field.

Setter for shipping_options field.

Setter for error_message field.

Implementors§