pub struct RadarValueList {
pub alias: String,
pub created: Timestamp,
pub created_by: String,
pub id: RadarValueListId,
pub item_type: RadarValueListItemType,
pub list_items: List<RadarValueListItem>,
pub livemode: bool,
pub metadata: HashMap<String, String>,
pub name: String,
}
Expand description
Value lists allow you to group values together which can then be referenced in rules.
Related guide: Default Stripe lists
For more details see <https://stripe.com/docs/api/radar/value_lists/object>.
Fields§
§alias: String
The name of the value list for use in rules.
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 created this value list.
id: RadarValueListId
Unique identifier for the object.
item_type: RadarValueListItemType
The type of items in the value list.
One of card_fingerprint
, us_bank_account_fingerprint
, sepa_debit_fingerprint
, card_bin
, email
, ip_address
, country
, string
, case_sensitive_string
, or customer_id
.
list_items: List<RadarValueListItem>
List of items contained within this value list.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
metadata: HashMap<String, String>
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
name: String
The name of the value list.
Trait Implementations§
Source§impl Clone for RadarValueList
impl Clone for RadarValueList
Source§fn clone(&self) -> RadarValueList
fn clone(&self) -> RadarValueList
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more