class Google::Apis::FcmdataV1beta1::GoogleFirebaseFcmDataV1beta1AndroidDeliveryData
Message delivery data for a given date, app, and analytics label combination.
Attributes
The analytics label associated with the messages sent. All messages sent without an analytics label will be grouped together in a single entry. Corresponds to the JSON property `analyticsLabel` @return [String]
The app ID to which the messages were sent. Corresponds to the JSON property `appId` @return [String]
Data detailing messaging delivery Corresponds to the JSON property `data` @return [Google::Apis::FcmdataV1beta1::GoogleFirebaseFcmDataV1beta1Data]
Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and ` google.protobuf.Timestamp`. Corresponds to the JSON property `date` @return [Google::Apis::FcmdataV1beta1::GoogleTypeDate]
Public Class Methods
# File lib/google/apis/fcmdata_v1beta1/classes.rb, line 57 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/fcmdata_v1beta1/classes.rb, line 62 def update!(**args) @analytics_label = args[:analytics_label] if args.key?(:analytics_label) @app_id = args[:app_id] if args.key?(:app_id) @data = args[:data] if args.key?(:data) @date = args[:date] if args.key?(:date) end