pub struct PropertyOption {
pub id: String,
pub property_key_id: String,
pub value: String,
pub label: String,
pub sort_order: i32,
pub parent_option_id: Option<String>,
pub metadata: Value,
pub created_at: String,
pub updated_at: String,
}Expand description
Property option from GET /property-keys/:id/options.
Fields§
§id: String§property_key_id: String§value: String§label: String§sort_order: i32§parent_option_id: Option<String>§metadata: Value§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for PropertyOption
impl Clone for PropertyOption
Source§fn clone(&self) -> PropertyOption
fn clone(&self) -> PropertyOption
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PropertyOption
impl Debug for PropertyOption
Source§impl<'de> Deserialize<'de> for PropertyOption
impl<'de> Deserialize<'de> for PropertyOption
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PropertyOption
impl RefUnwindSafe for PropertyOption
impl Send for PropertyOption
impl Sync for PropertyOption
impl Unpin for PropertyOption
impl UnsafeUnpin for PropertyOption
impl UnwindSafe for PropertyOption
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