pub struct RadarValueListItem {
pub created: Timestamp,
pub created_by: String,
pub id: RadarValueListItemId,
pub livemode: bool,
pub value: String,
pub value_list: String,
}
Expand description
Value list items allow you to add specific values to a given Radar value list, which can then be used in rules.
Related guide: Managing list items
For more details see <https://stripe.com/docs/api/radar/value_list_items/object>.
Fields§
§created: Timestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
created_by: String
The name or email address of the user who added this item to the value list.
id: RadarValueListItemId
Unique identifier for the object.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
value: String
The value of the item.
value_list: String
The identifier of the value list this item belongs to.
Trait Implementations§
Source§impl Clone for RadarValueListItem
impl Clone for RadarValueListItem
Source§fn clone(&self) -> RadarValueListItem
fn clone(&self) -> RadarValueListItem
Returns a duplicate 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 RadarValueListItem
impl Debug for RadarValueListItem
Source§impl Deserialize for RadarValueListItem
impl Deserialize for RadarValueListItem
Source§impl FromValueOpt for RadarValueListItem
impl FromValueOpt for RadarValueListItem
fn from_value(v: Value) -> Option<Self>
Source§impl Object for RadarValueListItem
impl Object for RadarValueListItem
Source§impl ObjectDeser for RadarValueListItem
impl ObjectDeser for RadarValueListItem
Auto Trait Implementations§
impl Freeze for RadarValueListItem
impl RefUnwindSafe for RadarValueListItem
impl Send for RadarValueListItem
impl Sync for RadarValueListItem
impl Unpin for RadarValueListItem
impl UnwindSafe for RadarValueListItem
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
Mutably borrows from an owned value. Read more