Struct google_games1::EventRecordRequest[][src]

pub struct EventRecordRequest {
    pub time_periods: Option<Vec<EventPeriodUpdate>>,
    pub kind: Option<String>,
    pub request_id: Option<String>,
    pub current_time_millis: Option<String>,
}

This is a JSON template for an event period update resource.

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 list of the time period updates being made in this request.

Uniquely identifies the type of this resource. Value is always the fixed string games#eventRecordRequest.

The request ID used to identify this attempt to record events.

The current time when this update was sent, in milliseconds, since 1970 UTC (Unix Epoch).

Trait Implementations

impl Default for EventRecordRequest
[src]

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

impl Clone for EventRecordRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EventRecordRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for EventRecordRequest
[src]

Auto Trait Implementations