Struct google_genomics1::SearchCallSetsRequest[][src]

pub struct SearchCallSetsRequest {
    pub page_token: Option<String>,
    pub variant_set_ids: Option<Vec<String>>,
    pub name: Option<String>,
    pub page_size: Option<i32>,
}

The call set search request.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response.

Restrict the query to call sets within the given variant sets. At least one ID must be provided.

Only return call sets for which a substring of the name matches this string.

The maximum number of results to return in a single page. If unspecified, defaults to 1024.

Trait Implementations

impl Default for SearchCallSetsRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for SearchCallSetsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SearchCallSetsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for SearchCallSetsRequest
[src]

Auto Trait Implementations