pub struct GetJoinedMembershipUsersResponse {
pub user_ids: Vec<String>,
pub next: Option<String>,
}
Expand description
GetJoinedMembershipUsersResponse : List of users who have joined the membership
Fields§
§user_ids: Vec<String>
A list of user IDs who joined the membership. Users who have not agreed to the bot user agreement, are not following the bot, or are not active will be excluded. If there are no users in the membership, an empty list will be returned.
next: Option<String>
A continuation token to get next remaining membership user IDs. Returned only when there are remaining user IDs that weren’t returned in the userIds property in the previous request. The continuation token expires in 24 hours (86,400 seconds).
Implementations§
Source§impl GetJoinedMembershipUsersResponse
impl GetJoinedMembershipUsersResponse
Sourcepub fn new(user_ids: Vec<String>) -> GetJoinedMembershipUsersResponse
pub fn new(user_ids: Vec<String>) -> GetJoinedMembershipUsersResponse
List of users who have joined the membership
Trait Implementations§
Source§impl Clone for GetJoinedMembershipUsersResponse
impl Clone for GetJoinedMembershipUsersResponse
Source§fn clone(&self) -> GetJoinedMembershipUsersResponse
fn clone(&self) -> GetJoinedMembershipUsersResponse
Returns a duplicate 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 Default for GetJoinedMembershipUsersResponse
impl Default for GetJoinedMembershipUsersResponse
Source§fn default() -> GetJoinedMembershipUsersResponse
fn default() -> GetJoinedMembershipUsersResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetJoinedMembershipUsersResponse
impl<'de> Deserialize<'de> for GetJoinedMembershipUsersResponse
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 GetJoinedMembershipUsersResponse
impl PartialEq for GetJoinedMembershipUsersResponse
Source§fn eq(&self, other: &GetJoinedMembershipUsersResponse) -> bool
fn eq(&self, other: &GetJoinedMembershipUsersResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetJoinedMembershipUsersResponse
Auto Trait Implementations§
impl Freeze for GetJoinedMembershipUsersResponse
impl RefUnwindSafe for GetJoinedMembershipUsersResponse
impl Send for GetJoinedMembershipUsersResponse
impl Sync for GetJoinedMembershipUsersResponse
impl Unpin for GetJoinedMembershipUsersResponse
impl UnwindSafe for GetJoinedMembershipUsersResponse
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