Struct google_games1::EventRecordFailure[][src]

pub struct EventRecordFailure {
    pub event_id: Option<String>,
    pub kind: Option<String>,
    pub failure_cause: Option<String>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

The ID of the event that was not updated.

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

The cause for the update failure. Possible values are:

  • "NOT_FOUND" - An attempt was made to set an event that was not defined.
  • "INVALID_UPDATE_VALUE" - An attempt was made to increment an event by a non-positive value.

Trait Implementations

impl Default for EventRecordFailure
[src]

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

impl Clone for EventRecordFailure
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EventRecordFailure
[src]

Formats the value using the given formatter. Read more

impl Part for EventRecordFailure
[src]

Auto Trait Implementations