pub struct InviteScheduleEntryInput {
pub id: Option<String>,
pub invite_recurrence: Option<Value>,
pub is_enabled: Option<bool>,
pub name: Option<String>,
pub valid_from: String,
pub valid_to: String,
}Expand description
InviteScheduleEntryInput
JSON schema
{
"type": "object",
"required": [
"valid_from",
"valid_to"
],
"properties": {
"id": {
"type": [
"string",
"null"
]
},
"invite_recurrence": {},
"is_enabled": {
"type": "boolean"
},
"name": {
"type": [
"string",
"null"
]
},
"valid_from": {
"type": "string"
},
"valid_to": {
"type": "string"
}
}
}Fields§
§id: Option<String>§invite_recurrence: Option<Value>§is_enabled: Option<bool>§name: Option<String>§valid_from: String§valid_to: StringTrait Implementations§
Source§impl Clone for InviteScheduleEntryInput
impl Clone for InviteScheduleEntryInput
Source§fn clone(&self) -> InviteScheduleEntryInput
fn clone(&self) -> InviteScheduleEntryInput
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 InviteScheduleEntryInput
impl Debug for InviteScheduleEntryInput
Source§impl<'de> Deserialize<'de> for InviteScheduleEntryInput
impl<'de> Deserialize<'de> for InviteScheduleEntryInput
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 InviteScheduleEntryInput
impl RefUnwindSafe for InviteScheduleEntryInput
impl Send for InviteScheduleEntryInput
impl Sync for InviteScheduleEntryInput
impl Unpin for InviteScheduleEntryInput
impl UnsafeUnpin for InviteScheduleEntryInput
impl UnwindSafe for InviteScheduleEntryInput
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