Struct google_genomics1::BatchCreateAnnotationsRequest[][src]

pub struct BatchCreateAnnotationsRequest {
    pub request_id: Option<String>,
    pub annotations: Option<Vec<Annotation>>,
}

There is no detailed description.

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

A unique request ID which enables the server to detect duplicated requests. If provided, duplicated requests will result in the same response; if not provided, duplicated requests may result in duplicated data. For a given annotation set, callers should not reuse request_ids when writing different batches of annotations - behavior in this case is undefined. A common approach is to use a UUID. For batch jobs where worker crashes are a possibility, consider using some unique variant of a worker or run ID.

The annotations to be created. At most 4096 can be specified in a single request.

Trait Implementations

impl Default for BatchCreateAnnotationsRequest
[src]

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

impl Clone for BatchCreateAnnotationsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BatchCreateAnnotationsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for BatchCreateAnnotationsRequest
[src]

Auto Trait Implementations