Struct google_api_proto::google::ads::googleads::v16::resources::FeedItemAttributeValue
source · pub struct FeedItemAttributeValue {
pub feed_attribute_id: Option<i64>,
pub integer_value: Option<i64>,
pub boolean_value: Option<bool>,
pub string_value: Option<String>,
pub double_value: Option<f64>,
pub price_value: Option<Money>,
pub integer_values: Vec<i64>,
pub boolean_values: Vec<bool>,
pub string_values: Vec<String>,
pub double_values: Vec<f64>,
}
Expand description
A feed item attribute value.
Fields§
§feed_attribute_id: Option<i64>
Id of the feed attribute for which the value is associated with.
integer_value: Option<i64>
Int64 value. Should be set if feed_attribute_id refers to a feed attribute of type INT64.
boolean_value: Option<bool>
Bool value. Should be set if feed_attribute_id refers to a feed attribute of type BOOLEAN.
string_value: Option<String>
String value. Should be set if feed_attribute_id refers to a feed attribute of type STRING, URL or DATE_TIME. For STRING the maximum length is 1500 characters. For URL the maximum length is 2076 characters. For DATE_TIME the string must be in the format “YYYYMMDD HHMMSS”.
double_value: Option<f64>
Double value. Should be set if feed_attribute_id refers to a feed attribute of type DOUBLE.
price_value: Option<Money>
Price value. Should be set if feed_attribute_id refers to a feed attribute of type PRICE.
integer_values: Vec<i64>
Repeated int64 value. Should be set if feed_attribute_id refers to a feed attribute of type INT64_LIST.
boolean_values: Vec<bool>
Repeated bool value. Should be set if feed_attribute_id refers to a feed attribute of type BOOLEAN_LIST.
string_values: Vec<String>
Repeated string value. Should be set if feed_attribute_id refers to a feed attribute of type STRING_LIST, URL_LIST or DATE_TIME_LIST. For STRING_LIST and URL_LIST the total size of the list in bytes may not exceed 3000. For DATE_TIME_LIST the number of elements may not exceed 200.
For STRING_LIST the maximum length of each string element is 1500 characters. For URL_LIST the maximum length is 2076 characters. For DATE_TIME the format of the string must be the same as start and end time for the feed item.
double_values: Vec<f64>
Repeated double value. Should be set if feed_attribute_id refers to a feed attribute of type DOUBLE_LIST.
Implementations§
source§impl FeedItemAttributeValue
impl FeedItemAttributeValue
sourcepub fn feed_attribute_id(&self) -> i64
pub fn feed_attribute_id(&self) -> i64
Returns the value of feed_attribute_id
, or the default value if feed_attribute_id
is unset.
sourcepub fn integer_value(&self) -> i64
pub fn integer_value(&self) -> i64
Returns the value of integer_value
, or the default value if integer_value
is unset.
sourcepub fn boolean_value(&self) -> bool
pub fn boolean_value(&self) -> bool
Returns the value of boolean_value
, or the default value if boolean_value
is unset.
sourcepub fn string_value(&self) -> &str
pub fn string_value(&self) -> &str
Returns the value of string_value
, or the default value if string_value
is unset.
sourcepub fn double_value(&self) -> f64
pub fn double_value(&self) -> f64
Returns the value of double_value
, or the default value if double_value
is unset.
Trait Implementations§
source§impl Clone for FeedItemAttributeValue
impl Clone for FeedItemAttributeValue
source§fn clone(&self) -> FeedItemAttributeValue
fn clone(&self) -> FeedItemAttributeValue
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FeedItemAttributeValue
impl Debug for FeedItemAttributeValue
source§impl Default for FeedItemAttributeValue
impl Default for FeedItemAttributeValue
source§impl Message for FeedItemAttributeValue
impl Message for FeedItemAttributeValue
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for FeedItemAttributeValue
impl PartialEq for FeedItemAttributeValue
source§fn eq(&self, other: &FeedItemAttributeValue) -> bool
fn eq(&self, other: &FeedItemAttributeValue) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FeedItemAttributeValue
Auto Trait Implementations§
impl Freeze for FeedItemAttributeValue
impl RefUnwindSafe for FeedItemAttributeValue
impl Send for FeedItemAttributeValue
impl Sync for FeedItemAttributeValue
impl Unpin for FeedItemAttributeValue
impl UnwindSafe for FeedItemAttributeValue
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<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