Enum google_api_proto::google::ads::googleads::v17::enums::flight_placeholder_field_enum::FlightPlaceholderField
source · #[repr(i32)]pub enum FlightPlaceholderField {
Show 19 variants
Unspecified = 0,
Unknown = 1,
DestinationId = 2,
OriginId = 3,
FlightDescription = 4,
OriginName = 5,
DestinationName = 6,
FlightPrice = 7,
FormattedPrice = 8,
FlightSalePrice = 9,
FormattedSalePrice = 10,
ImageUrl = 11,
FinalUrls = 12,
FinalMobileUrls = 13,
TrackingUrl = 14,
AndroidAppLink = 15,
SimilarDestinationIds = 16,
IosAppLink = 17,
IosAppStoreId = 18,
}
Expand description
Possible values for Flight placeholder fields.
Variants§
Unspecified = 0
Not specified.
Unknown = 1
Used for return value only. Represents value unknown in this version.
DestinationId = 2
Data Type: STRING. Required. Destination id. Example: PAR, LON. For feed items that only have destination id, destination id must be a unique key. For feed items that have both destination id and origin id, then the combination must be a unique key.
OriginId = 3
Data Type: STRING. Origin id. Example: PAR, LON. Optional. Combination of destination id and origin id must be unique per offer.
FlightDescription = 4
Data Type: STRING. Required. Main headline with product name to be shown in dynamic ad.
OriginName = 5
Data Type: STRING. Shorter names are recommended.
DestinationName = 6
Data Type: STRING. Shorter names are recommended.
FlightPrice = 7
Data Type: STRING. Price to be shown in the ad. Example: “100.00 USD”
FormattedPrice = 8
Data Type: STRING. Formatted price to be shown in the ad. Example: “Starting at $100.00 USD”, “$80 - $100”
FlightSalePrice = 9
Data Type: STRING. Sale price to be shown in the ad. Example: “80.00 USD”
FormattedSalePrice = 10
Data Type: STRING. Formatted sale price to be shown in the ad. Example: “On sale for $80.00”, “$60 - $80”
ImageUrl = 11
Data Type: URL. Image to be displayed in the ad.
FinalUrls = 12
Data Type: URL_LIST. Required. Final URLs for the ad when using Upgraded URLs. User will be redirected to these URLs when they click on an ad, or when they click on a specific flight for ads that show multiple flights.
FinalMobileUrls = 13
Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded URLs.
TrackingUrl = 14
Data Type: URL. Tracking template for the ad when using Upgraded URLs.
AndroidAppLink = 15
Data Type: STRING. Android app link. Must be formatted as: android-app://{package_id}/{scheme}/{host_path}. The components are defined as follows: package_id: app ID as specified in Google Play. scheme: the scheme to pass to the application. Can be HTTP, or a custom scheme. host_path: identifies the specific content within your application.
SimilarDestinationIds = 16
Data Type: STRING_LIST. List of recommended destination IDs to show together with this item.
IosAppLink = 17
Data Type: STRING. iOS app link.
IosAppStoreId = 18
Data Type: INT64. iOS app store ID.
Implementations§
source§impl FlightPlaceholderField
impl FlightPlaceholderField
sourcepub fn is_valid(value: i32) -> bool
pub fn is_valid(value: i32) -> bool
Returns true
if value
is a variant of FlightPlaceholderField
.
sourcepub fn from_i32(value: i32) -> Option<FlightPlaceholderField>
👎Deprecated: Use the TryFrom<i32> implementation instead
pub fn from_i32(value: i32) -> Option<FlightPlaceholderField>
Converts an i32
to a FlightPlaceholderField
, or None
if value
is not a valid variant.
source§impl FlightPlaceholderField
impl FlightPlaceholderField
sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
source§impl Clone for FlightPlaceholderField
impl Clone for FlightPlaceholderField
source§fn clone(&self) -> FlightPlaceholderField
fn clone(&self) -> FlightPlaceholderField
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FlightPlaceholderField
impl Debug for FlightPlaceholderField
source§impl Default for FlightPlaceholderField
impl Default for FlightPlaceholderField
source§fn default() -> FlightPlaceholderField
fn default() -> FlightPlaceholderField
source§impl From<FlightPlaceholderField> for i32
impl From<FlightPlaceholderField> for i32
source§fn from(value: FlightPlaceholderField) -> i32
fn from(value: FlightPlaceholderField) -> i32
source§impl Hash for FlightPlaceholderField
impl Hash for FlightPlaceholderField
source§impl Ord for FlightPlaceholderField
impl Ord for FlightPlaceholderField
source§fn cmp(&self, other: &FlightPlaceholderField) -> Ordering
fn cmp(&self, other: &FlightPlaceholderField) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for FlightPlaceholderField
impl PartialEq for FlightPlaceholderField
source§fn eq(&self, other: &FlightPlaceholderField) -> bool
fn eq(&self, other: &FlightPlaceholderField) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for FlightPlaceholderField
impl PartialOrd for FlightPlaceholderField
source§fn partial_cmp(&self, other: &FlightPlaceholderField) -> Option<Ordering>
fn partial_cmp(&self, other: &FlightPlaceholderField) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl TryFrom<i32> for FlightPlaceholderField
impl TryFrom<i32> for FlightPlaceholderField
§type Error = UnknownEnumValue
type Error = UnknownEnumValue
source§fn try_from(value: i32) -> Result<FlightPlaceholderField, UnknownEnumValue>
fn try_from(value: i32) -> Result<FlightPlaceholderField, UnknownEnumValue>
impl Copy for FlightPlaceholderField
impl Eq for FlightPlaceholderField
impl StructuralPartialEq for FlightPlaceholderField
Auto Trait Implementations§
impl Freeze for FlightPlaceholderField
impl RefUnwindSafe for FlightPlaceholderField
impl Send for FlightPlaceholderField
impl Sync for FlightPlaceholderField
impl Unpin for FlightPlaceholderField
impl UnwindSafe for FlightPlaceholderField
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request