pub struct ListTeamMemberBookingProfilesResponse {
pub team_member_booking_profiles: Option<Vec<TeamMemberBookingProfile>>,
pub cursor: Option<String>,
pub errors: Option<Vec<Error>>,
}Expand description
This is a model struct for ListTeamMemberBookingProfilesResponse type
Fields§
§team_member_booking_profiles: Option<Vec<TeamMemberBookingProfile>>The list of team member booking profiles. The results are returned in the ascending order of the time when the team member booking profiles were last updated. Multiple booking profiles updated at the same time are further sorted in the ascending order of their IDs.
cursor: Option<String>The pagination cursor to be used in a subsequent request. If unset, this is the final response. Max Length 65536
See Pagination for more information.
errors: Option<Vec<Error>>Information about errors encountered during the request.
Trait Implementations§
source§impl Clone for ListTeamMemberBookingProfilesResponse
impl Clone for ListTeamMemberBookingProfilesResponse
source§fn clone(&self) -> ListTeamMemberBookingProfilesResponse
fn clone(&self) -> ListTeamMemberBookingProfilesResponse
Returns a copy 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<'de> Deserialize<'de> for ListTeamMemberBookingProfilesResponse
impl<'de> Deserialize<'de> for ListTeamMemberBookingProfilesResponse
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
source§impl PartialEq for ListTeamMemberBookingProfilesResponse
impl PartialEq for ListTeamMemberBookingProfilesResponse
source§fn eq(&self, other: &ListTeamMemberBookingProfilesResponse) -> bool
fn eq(&self, other: &ListTeamMemberBookingProfilesResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for ListTeamMemberBookingProfilesResponse
impl StructuralPartialEq for ListTeamMemberBookingProfilesResponse
Auto Trait Implementations§
impl RefUnwindSafe for ListTeamMemberBookingProfilesResponse
impl Send for ListTeamMemberBookingProfilesResponse
impl Sync for ListTeamMemberBookingProfilesResponse
impl Unpin for ListTeamMemberBookingProfilesResponse
impl UnwindSafe for ListTeamMemberBookingProfilesResponse
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.