pub struct GuaranteedOrderStatus {
pub config_status: Option<String>,
pub entity_pause_reason: Option<String>,
pub entity_status: Option<String>,
}
Expand description
The status settings of the guaranteed order.
This type is not used in any activity, and only used as part of another schema.
Fields§
§config_status: Option<String>
Output only. The configuration status of the guaranteed order. Acceptable values are PENDING
and COMPLETED
. A guaranteed order must be configured (fill in the required fields, choose creatives, and select a default campaign) before it can serve. Currently the configuration action can only be performed via UI.
entity_pause_reason: Option<String>
The user-provided reason for pausing this guaranteed order. Must be UTF-8 encoded with a maximum length of 100 bytes. Only applicable when entity_status is set to ENTITY_STATUS_PAUSED
.
entity_status: Option<String>
Whether or not the guaranteed order is servable. Acceptable values are ENTITY_STATUS_ACTIVE
, ENTITY_STATUS_ARCHIVED
, and ENTITY_STATUS_PAUSED
. Default value is ENTITY_STATUS_ACTIVE
.
Trait Implementations§
Source§impl Clone for GuaranteedOrderStatus
impl Clone for GuaranteedOrderStatus
Source§fn clone(&self) -> GuaranteedOrderStatus
fn clone(&self) -> GuaranteedOrderStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GuaranteedOrderStatus
impl Debug for GuaranteedOrderStatus
Source§impl Default for GuaranteedOrderStatus
impl Default for GuaranteedOrderStatus
Source§fn default() -> GuaranteedOrderStatus
fn default() -> GuaranteedOrderStatus
Source§impl<'de> Deserialize<'de> for GuaranteedOrderStatus
impl<'de> Deserialize<'de> for GuaranteedOrderStatus
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>,
Source§impl Serialize for GuaranteedOrderStatus
impl Serialize for GuaranteedOrderStatus
impl Part for GuaranteedOrderStatus
Auto Trait Implementations§
impl Freeze for GuaranteedOrderStatus
impl RefUnwindSafe for GuaranteedOrderStatus
impl Send for GuaranteedOrderStatus
impl Sync for GuaranteedOrderStatus
impl Unpin for GuaranteedOrderStatus
impl UnwindSafe for GuaranteedOrderStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more