pub struct ListConferenceParams {
pub account_sid: String,
pub date_created: Option<String>,
pub date_created_less_than: Option<String>,
pub date_created_greater_than: Option<String>,
pub date_updated: Option<String>,
pub date_updated_less_than: Option<String>,
pub date_updated_greater_than: Option<String>,
pub friendly_name: Option<String>,
pub status: Option<String>,
pub page_size: Option<i32>,
pub page: Option<i32>,
pub page_token: Option<String>,
}
Expand description
struct for passing parameters to the method list_conference
Fields§
§account_sid: String
The SID of the Account that created the Conference resource(s) to read.
date_created: Option<String>
Only include conferences that were created on this date. Specify a date as YYYY-MM-DD
in UTC, for example: 2009-07-06
, to read only conferences that were created on this date. You can also specify an inequality, such as DateCreated<=YYYY-MM-DD
, to read conferences that were created on or before midnight of this date, and DateCreated>=YYYY-MM-DD
to read conferences that were created on or after midnight of this date.
date_created_less_than: Option<String>
Only include conferences that were created on this date. Specify a date as YYYY-MM-DD
in UTC, for example: 2009-07-06
, to read only conferences that were created on this date. You can also specify an inequality, such as DateCreated<=YYYY-MM-DD
, to read conferences that were created on or before midnight of this date, and DateCreated>=YYYY-MM-DD
to read conferences that were created on or after midnight of this date.
date_created_greater_than: Option<String>
Only include conferences that were created on this date. Specify a date as YYYY-MM-DD
in UTC, for example: 2009-07-06
, to read only conferences that were created on this date. You can also specify an inequality, such as DateCreated<=YYYY-MM-DD
, to read conferences that were created on or before midnight of this date, and DateCreated>=YYYY-MM-DD
to read conferences that were created on or after midnight of this date.
date_updated: Option<String>
Only include conferences that were last updated on this date. Specify a date as YYYY-MM-DD
in UTC, for example: 2009-07-06
, to read only conferences that were last updated on this date. You can also specify an inequality, such as DateUpdated<=YYYY-MM-DD
, to read conferences that were last updated on or before midnight of this date, and DateUpdated>=YYYY-MM-DD
to read conferences that were last updated on or after midnight of this date.
date_updated_less_than: Option<String>
Only include conferences that were last updated on this date. Specify a date as YYYY-MM-DD
in UTC, for example: 2009-07-06
, to read only conferences that were last updated on this date. You can also specify an inequality, such as DateUpdated<=YYYY-MM-DD
, to read conferences that were last updated on or before midnight of this date, and DateUpdated>=YYYY-MM-DD
to read conferences that were last updated on or after midnight of this date.
date_updated_greater_than: Option<String>
Only include conferences that were last updated on this date. Specify a date as YYYY-MM-DD
in UTC, for example: 2009-07-06
, to read only conferences that were last updated on this date. You can also specify an inequality, such as DateUpdated<=YYYY-MM-DD
, to read conferences that were last updated on or before midnight of this date, and DateUpdated>=YYYY-MM-DD
to read conferences that were last updated on or after midnight of this date.
friendly_name: Option<String>
The string that identifies the Conference resources to read.
status: Option<String>
The status of the resources to read. Can be: init
, in-progress
, or completed
.
page_size: Option<i32>
How many resources to return in each list page. The default is 50, and the maximum is 1000.
page: Option<i32>
The page index. This value is simply for client state.
page_token: Option<String>
The page token. This is provided by the API.
Trait Implementations§
Source§impl Clone for ListConferenceParams
impl Clone for ListConferenceParams
Source§fn clone(&self) -> ListConferenceParams
fn clone(&self) -> ListConferenceParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more