pub struct CommentCollectionFilter {Show 16 fields
pub id: Option<Box<IDComparator>>,
pub created_at: Option<Box<DateComparator>>,
pub updated_at: Option<Box<DateComparator>>,
pub body: Option<Box<StringComparator>>,
pub user: Option<Box<UserFilter>>,
pub issue: Option<Box<NullableIssueFilter>>,
pub project_update: Option<Box<NullableProjectUpdateFilter>>,
pub parent: Option<Box<NullableCommentFilter>>,
pub document_content: Option<Box<NullableDocumentContentFilter>>,
pub reactions: Option<Box<ReactionCollectionFilter>>,
pub needs: Option<Box<CustomerNeedCollectionFilter>>,
pub and: Option<Vec<Box<CommentCollectionFilter>>>,
pub or: Option<Vec<Box<CommentCollectionFilter>>>,
pub some: Option<Box<CommentFilter>>,
pub every: Option<Box<CommentFilter>>,
pub length: Option<Box<NumberComparator>>,
}Expand description
Comment filtering options.
Fields§
§id: Option<Box<IDComparator>>Comparator for the identifier.
created_at: Option<Box<DateComparator>>Comparator for the created at date.
updated_at: Option<Box<DateComparator>>Comparator for the updated at date.
body: Option<Box<StringComparator>>Comparator for the comment’s body.
user: Option<Box<UserFilter>>Filters that the comment’s creator must satisfy.
issue: Option<Box<NullableIssueFilter>>Filters that the comment’s issue must satisfy.
project_update: Option<Box<NullableProjectUpdateFilter>>Filters that the comment’s project update must satisfy.
parent: Option<Box<NullableCommentFilter>>Filters that the comment parent must satisfy.
document_content: Option<Box<NullableDocumentContentFilter>>Filters that the comment’s document content must satisfy.
reactions: Option<Box<ReactionCollectionFilter>>Filters that the comment’s reactions must satisfy.
needs: Option<Box<CustomerNeedCollectionFilter>>Filters that the comment’s customer needs must satisfy.
and: Option<Vec<Box<CommentCollectionFilter>>>Compound filters, all of which need to be matched by the comment.
or: Option<Vec<Box<CommentCollectionFilter>>>Compound filters, one of which need to be matched by the comment.
some: Option<Box<CommentFilter>>Filters that needs to be matched by some comments.
every: Option<Box<CommentFilter>>Filters that needs to be matched by all comments.
length: Option<Box<NumberComparator>>Comparator for the collection length.
Trait Implementations§
Source§impl Clone for CommentCollectionFilter
impl Clone for CommentCollectionFilter
Source§fn clone(&self) -> CommentCollectionFilter
fn clone(&self) -> CommentCollectionFilter
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more