| // Copyright 2021 Google LLC |
| // |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file or at |
| // https://developers.google.com/open-source/licenses/bsd |
| |
| // This is a generated file (see the discoveryapis_generator project). |
| |
| // ignore_for_file: camel_case_types |
| // ignore_for_file: comment_references |
| // ignore_for_file: deprecated_member_use_from_same_package |
| // ignore_for_file: doc_directive_unknown |
| // ignore_for_file: lines_longer_than_80_chars |
| // ignore_for_file: non_constant_identifier_names |
| // ignore_for_file: prefer_interpolation_to_compose_strings |
| // ignore_for_file: unintended_html_in_doc_comment |
| // ignore_for_file: unnecessary_brace_in_string_interps |
| // ignore_for_file: unnecessary_lambdas |
| // ignore_for_file: unnecessary_string_interpolations |
| |
| /// Firebase Cloud Messaging Data API - v1beta1 |
| /// |
| /// Provides additional information about Firebase Cloud Messaging (FCM) message |
| /// sends and deliveries. |
| /// |
| /// For more information, see <https://firebase.google.com/docs/cloud-messaging> |
| /// |
| /// Create an instance of [FcmdataApi] to access these resources: |
| /// |
| /// - [ProjectsResource] |
| /// - [ProjectsAndroidAppsResource] |
| /// - [ProjectsAndroidAppsDeliveryDataResource] |
| library; |
| |
| import 'dart:async' as async; |
| import 'dart:core' as core; |
| |
| import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| import 'package:http/http.dart' as http; |
| |
| import '../shared.dart'; |
| import '../src/user_agent.dart'; |
| |
| export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' |
| show ApiRequestError, DetailedApiRequestError; |
| |
| /// Provides additional information about Firebase Cloud Messaging (FCM) message |
| /// sends and deliveries. |
| class FcmdataApi { |
| /// See, edit, configure, and delete your Google Cloud data and see the email |
| /// address for your Google Account. |
| static const cloudPlatformScope = |
| 'https://www.googleapis.com/auth/cloud-platform'; |
| |
| final commons.ApiRequester _requester; |
| |
| ProjectsResource get projects => ProjectsResource(_requester); |
| |
| FcmdataApi( |
| http.Client client, { |
| core.String rootUrl = 'https://fcmdata.googleapis.com/', |
| core.String servicePath = '', |
| }) : _requester = commons.ApiRequester( |
| client, |
| rootUrl, |
| servicePath, |
| requestHeaders, |
| ); |
| } |
| |
| class ProjectsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsAndroidAppsResource get androidApps => |
| ProjectsAndroidAppsResource(_requester); |
| |
| ProjectsResource(commons.ApiRequester client) : _requester = client; |
| } |
| |
| class ProjectsAndroidAppsResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsAndroidAppsDeliveryDataResource get deliveryData => |
| ProjectsAndroidAppsDeliveryDataResource(_requester); |
| |
| ProjectsAndroidAppsResource(commons.ApiRequester client) |
| : _requester = client; |
| } |
| |
| class ProjectsAndroidAppsDeliveryDataResource { |
| final commons.ApiRequester _requester; |
| |
| ProjectsAndroidAppsDeliveryDataResource(commons.ApiRequester client) |
| : _requester = client; |
| |
| /// List aggregate delivery data for the given Android application. |
| /// |
| /// Request parameters: |
| /// |
| /// [parent] - Required. The application for which to list delivery data. |
| /// Format: `projects/{project_id}/androidApps/{app_id}` |
| /// Value must have pattern `^projects/\[^/\]+/androidApps/\[^/\]+$`. |
| /// |
| /// [pageSize] - The maximum number of entries to return. The service may |
| /// return fewer than this value. If unspecified, at most 1,000 entries will |
| /// be returned. The maximum value is 10,000; values above 10,000 will be |
| /// capped to 10,000. This default may change over time. |
| /// |
| /// [pageToken] - A page token, received from a previous |
| /// `ListAndroidDeliveryDataRequest` call. Provide this to retrieve the |
| /// subsequent page. When paginating, all other parameters provided to |
| /// `ListAndroidDeliveryDataRequest` must match the call that provided the |
| /// page token. |
| /// |
| /// [$fields] - Selector specifying which fields to include in a partial |
| /// response. |
| /// |
| /// Completes with a |
| /// [GoogleFirebaseFcmDataV1beta1ListAndroidDeliveryDataResponse]. |
| /// |
| /// Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| /// error. |
| /// |
| /// If the used [http.Client] completes with an error when making a REST call, |
| /// this method will complete with the same error. |
| async.Future<GoogleFirebaseFcmDataV1beta1ListAndroidDeliveryDataResponse> |
| list( |
| core.String parent, { |
| core.int? pageSize, |
| core.String? pageToken, |
| core.String? $fields, |
| }) async { |
| final queryParams_ = <core.String, core.List<core.String>>{ |
| 'pageSize': ?pageSize == null ? null : ['${pageSize}'], |
| 'pageToken': ?pageToken == null ? null : [pageToken], |
| 'fields': ?$fields == null ? null : [$fields], |
| }; |
| |
| final url_ = 'v1beta1/' + core.Uri.encodeFull('$parent') + '/deliveryData'; |
| |
| final response_ = await _requester.request( |
| url_, |
| 'GET', |
| queryParams: queryParams_, |
| ); |
| return GoogleFirebaseFcmDataV1beta1ListAndroidDeliveryDataResponse.fromJson( |
| response_ as core.Map<core.String, core.dynamic>, |
| ); |
| } |
| } |
| |
| /// Message delivery data for a given date, app, and analytics label |
| /// combination. |
| class GoogleFirebaseFcmDataV1beta1AndroidDeliveryData { |
| /// The analytics label associated with the messages sent. |
| /// |
| /// All messages sent without an analytics label will be grouped together in a |
| /// single entry. |
| core.String? analyticsLabel; |
| |
| /// The app ID to which the messages were sent. |
| core.String? appId; |
| |
| /// The data for the specified appId, date, and analyticsLabel. |
| GoogleFirebaseFcmDataV1beta1Data? data; |
| |
| /// The date represented by this entry. |
| GoogleTypeDate? date; |
| |
| GoogleFirebaseFcmDataV1beta1AndroidDeliveryData({ |
| this.analyticsLabel, |
| this.appId, |
| this.data, |
| this.date, |
| }); |
| |
| GoogleFirebaseFcmDataV1beta1AndroidDeliveryData.fromJson(core.Map json_) |
| : this( |
| analyticsLabel: json_['analyticsLabel'] as core.String?, |
| appId: json_['appId'] as core.String?, |
| data: json_.containsKey('data') |
| ? GoogleFirebaseFcmDataV1beta1Data.fromJson( |
| json_['data'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| date: json_.containsKey('date') |
| ? GoogleTypeDate.fromJson( |
| json_['date'] as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final analyticsLabel = this.analyticsLabel; |
| final appId = this.appId; |
| final data = this.data; |
| final date = this.date; |
| return { |
| 'analyticsLabel': ?analyticsLabel, |
| 'appId': ?appId, |
| 'data': ?data, |
| 'date': ?date, |
| }; |
| } |
| } |
| |
| /// Data detailing messaging delivery |
| class GoogleFirebaseFcmDataV1beta1Data { |
| /// Count of messages accepted by FCM intended for Android devices. |
| /// |
| /// The targeted device must have opted in to the collection of usage and |
| /// diagnostic information. |
| core.String? countMessagesAccepted; |
| |
| /// Count of notifications accepted by FCM intended for Android devices. |
| /// |
| /// The targeted device must have opted in to the collection of usage and |
| /// diagnostic information. |
| core.String? countNotificationsAccepted; |
| |
| /// Additional information about delivery performance for messages that were |
| /// successfully delivered. |
| GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents? |
| deliveryPerformancePercents; |
| |
| /// Additional general insights about message delivery. |
| GoogleFirebaseFcmDataV1beta1MessageInsightPercents? messageInsightPercents; |
| |
| /// Mutually exclusive breakdown of message delivery outcomes. |
| GoogleFirebaseFcmDataV1beta1MessageOutcomePercents? messageOutcomePercents; |
| |
| /// Additional insights about proxy notification delivery. |
| GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents? |
| proxyNotificationInsightPercents; |
| |
| GoogleFirebaseFcmDataV1beta1Data({ |
| this.countMessagesAccepted, |
| this.countNotificationsAccepted, |
| this.deliveryPerformancePercents, |
| this.messageInsightPercents, |
| this.messageOutcomePercents, |
| this.proxyNotificationInsightPercents, |
| }); |
| |
| GoogleFirebaseFcmDataV1beta1Data.fromJson(core.Map json_) |
| : this( |
| countMessagesAccepted: json_['countMessagesAccepted'] as core.String?, |
| countNotificationsAccepted: |
| json_['countNotificationsAccepted'] as core.String?, |
| deliveryPerformancePercents: |
| json_.containsKey('deliveryPerformancePercents') |
| ? GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents.fromJson( |
| json_['deliveryPerformancePercents'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| messageInsightPercents: json_.containsKey('messageInsightPercents') |
| ? GoogleFirebaseFcmDataV1beta1MessageInsightPercents.fromJson( |
| json_['messageInsightPercents'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| messageOutcomePercents: json_.containsKey('messageOutcomePercents') |
| ? GoogleFirebaseFcmDataV1beta1MessageOutcomePercents.fromJson( |
| json_['messageOutcomePercents'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| proxyNotificationInsightPercents: |
| json_.containsKey('proxyNotificationInsightPercents') |
| ? GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents.fromJson( |
| json_['proxyNotificationInsightPercents'] |
| as core.Map<core.String, core.dynamic>, |
| ) |
| : null, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final countMessagesAccepted = this.countMessagesAccepted; |
| final countNotificationsAccepted = this.countNotificationsAccepted; |
| final deliveryPerformancePercents = this.deliveryPerformancePercents; |
| final messageInsightPercents = this.messageInsightPercents; |
| final messageOutcomePercents = this.messageOutcomePercents; |
| final proxyNotificationInsightPercents = |
| this.proxyNotificationInsightPercents; |
| return { |
| 'countMessagesAccepted': ?countMessagesAccepted, |
| 'countNotificationsAccepted': ?countNotificationsAccepted, |
| 'deliveryPerformancePercents': ?deliveryPerformancePercents, |
| 'messageInsightPercents': ?messageInsightPercents, |
| 'messageOutcomePercents': ?messageOutcomePercents, |
| 'proxyNotificationInsightPercents': ?proxyNotificationInsightPercents, |
| }; |
| } |
| } |
| |
| /// Overview of delivery performance for messages that were successfully |
| /// delivered. |
| /// |
| /// All percentages are calculated with countMessagesAccepted as the |
| /// denominator. These categories are not mutually exclusive; a message can be |
| /// delayed for multiple reasons. |
| class GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents { |
| /// The percentage of accepted messages that were delayed because the device |
| /// was in doze mode. |
| /// |
| /// Only |
| /// [normal priority messages](https://firebase.google.com/docs/cloud-messaging/concept-options#setting-the-priority-of-a-message) |
| /// should be delayed due to doze mode. |
| core.double? delayedDeviceDoze; |
| |
| /// The percentage of accepted messages that were delayed because the target |
| /// device was not connected at the time of sending. |
| /// |
| /// These messages were eventually delivered when the device reconnected. |
| core.double? delayedDeviceOffline; |
| |
| /// The percentage of accepted messages that were delayed due to message |
| /// throttling, such as |
| /// [collapsible message throttling](https://firebase.google.com/docs/cloud-messaging/concept-options#collapsible_throttling) |
| /// or |
| /// [maximum message rate throttling](https://firebase.google.com/docs/cloud-messaging/concept-options#device_throttling). |
| core.double? delayedMessageThrottled; |
| |
| /// The percentage of accepted messages that were delayed because the intended |
| /// device user-profile was |
| /// [stopped](https://firebase.google.com/docs/cloud-messaging/android/receive#handling_messages) |
| /// on the target device at the time of the send. |
| /// |
| /// The messages were eventually delivered when the user-profile was started |
| /// again. |
| core.double? delayedUserStopped; |
| |
| /// The percentage of accepted messages that were delivered to the device |
| /// without delay from the FCM system. |
| core.double? deliveredNoDelay; |
| |
| GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents({ |
| this.delayedDeviceDoze, |
| this.delayedDeviceOffline, |
| this.delayedMessageThrottled, |
| this.delayedUserStopped, |
| this.deliveredNoDelay, |
| }); |
| |
| GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents.fromJson( |
| core.Map json_, |
| ) : this( |
| delayedDeviceDoze: (json_['delayedDeviceDoze'] as core.num?) |
| ?.toDouble(), |
| delayedDeviceOffline: (json_['delayedDeviceOffline'] as core.num?) |
| ?.toDouble(), |
| delayedMessageThrottled: (json_['delayedMessageThrottled'] as core.num?) |
| ?.toDouble(), |
| delayedUserStopped: (json_['delayedUserStopped'] as core.num?) |
| ?.toDouble(), |
| deliveredNoDelay: (json_['deliveredNoDelay'] as core.num?)?.toDouble(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final delayedDeviceDoze = this.delayedDeviceDoze; |
| final delayedDeviceOffline = this.delayedDeviceOffline; |
| final delayedMessageThrottled = this.delayedMessageThrottled; |
| final delayedUserStopped = this.delayedUserStopped; |
| final deliveredNoDelay = this.deliveredNoDelay; |
| return { |
| 'delayedDeviceDoze': ?delayedDeviceDoze, |
| 'delayedDeviceOffline': ?delayedDeviceOffline, |
| 'delayedMessageThrottled': ?delayedMessageThrottled, |
| 'delayedUserStopped': ?delayedUserStopped, |
| 'deliveredNoDelay': ?deliveredNoDelay, |
| }; |
| } |
| } |
| |
| /// Response message for ListAndroidDeliveryData. |
| class GoogleFirebaseFcmDataV1beta1ListAndroidDeliveryDataResponse { |
| /// The delivery data for the provided app. |
| /// |
| /// There will be one entry per combination of app, date, and analytics label. |
| core.List<GoogleFirebaseFcmDataV1beta1AndroidDeliveryData>? |
| androidDeliveryData; |
| |
| /// A token, which can be sent as `page_token` to retrieve the next page. |
| /// |
| /// If this field is omitted, there are no subsequent pages. |
| core.String? nextPageToken; |
| |
| GoogleFirebaseFcmDataV1beta1ListAndroidDeliveryDataResponse({ |
| this.androidDeliveryData, |
| this.nextPageToken, |
| }); |
| |
| GoogleFirebaseFcmDataV1beta1ListAndroidDeliveryDataResponse.fromJson( |
| core.Map json_, |
| ) : this( |
| androidDeliveryData: (json_['androidDeliveryData'] as core.List?) |
| ?.map( |
| (value) => |
| GoogleFirebaseFcmDataV1beta1AndroidDeliveryData.fromJson( |
| value as core.Map<core.String, core.dynamic>, |
| ), |
| ) |
| .toList(), |
| nextPageToken: json_['nextPageToken'] as core.String?, |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final androidDeliveryData = this.androidDeliveryData; |
| final nextPageToken = this.nextPageToken; |
| return { |
| 'androidDeliveryData': ?androidDeliveryData, |
| 'nextPageToken': ?nextPageToken, |
| }; |
| } |
| } |
| |
| /// Additional information about message delivery. |
| /// |
| /// All percentages are calculated with countMessagesAccepted as the |
| /// denominator. |
| class GoogleFirebaseFcmDataV1beta1MessageInsightPercents { |
| /// The percentage of accepted messages that had their priority lowered from |
| /// high to normal. |
| /// |
| /// See |
| /// [documentation for setting message priority](https://firebase.google.com/docs/cloud-messaging/android/message-priority). |
| core.double? priorityLowered; |
| |
| GoogleFirebaseFcmDataV1beta1MessageInsightPercents({this.priorityLowered}); |
| |
| GoogleFirebaseFcmDataV1beta1MessageInsightPercents.fromJson(core.Map json_) |
| : this( |
| priorityLowered: (json_['priorityLowered'] as core.num?)?.toDouble(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final priorityLowered = this.priorityLowered; |
| return {'priorityLowered': ?priorityLowered}; |
| } |
| } |
| |
| /// Percentage breakdown of message delivery outcomes. |
| /// |
| /// These categories are mutually exclusive. All percentages are calculated with |
| /// countMessagesAccepted as the denominator. These categories may not account |
| /// for all message outcomes. |
| class GoogleFirebaseFcmDataV1beta1MessageOutcomePercents { |
| /// The percentage of accepted messages that were |
| /// [collapsed](https://firebase.google.com/docs/cloud-messaging/concept-options#collapsible_and_non-collapsible_messages) |
| /// by another message. |
| core.double? collapsed; |
| |
| /// The percentage of all accepted messages that were successfully delivered |
| /// to the device. |
| core.double? delivered; |
| |
| /// The percentage of accepted messages that were dropped because the |
| /// application was force stopped on the device at the time of delivery and |
| /// retries were unsuccessful. |
| core.double? droppedAppForceStopped; |
| |
| /// The percentage of accepted messages that were dropped because the target |
| /// device is inactive. |
| /// |
| /// FCM will drop messages if the target device is deemed inactive by our |
| /// servers. If a device does reconnect, we call |
| /// \[OnDeletedMessages()\](https://firebase.google.com/docs/cloud-messaging/android/receive#override-ondeletedmessages) |
| /// in our SDK instead of delivering the messages. |
| core.double? droppedDeviceInactive; |
| |
| /// The percentage of accepted messages that were dropped due to \[too many |
| /// undelivered non-collapsible |
| /// messages\](https://firebase.google.com/docs/cloud-messaging/concept-options#collapsible_and_non-collapsible_messages). |
| /// |
| /// Specifically, each app instance can only have 100 pending messages stored |
| /// on our servers for a device which is disconnected. When that device |
| /// reconnects, those messages are delivered. When there are more than the |
| /// maximum pending messages, we call |
| /// \[OnDeletedMessages()\](https://firebase.google.com/docs/cloud-messaging/android/receive#override-ondeletedmessages) |
| /// in our SDK instead of delivering the messages. |
| core.double? droppedTooManyPendingMessages; |
| |
| /// The percentage of accepted messages that expired because \[Time To Live |
| /// (TTL)\](https://firebase.google.com/docs/cloud-messaging/concept-options#ttl) |
| /// elapsed before the target device reconnected. |
| core.double? droppedTtlExpired; |
| |
| /// The percentage of messages accepted on this day that were not dropped and |
| /// not delivered, due to the device being disconnected (as of the end of the |
| /// America/Los_Angeles day when the message was sent to FCM). |
| /// |
| /// A portion of these messages will be delivered the next day when the device |
| /// connects but others may be destined to devices that ultimately never |
| /// reconnect. |
| core.double? pending; |
| |
| GoogleFirebaseFcmDataV1beta1MessageOutcomePercents({ |
| this.collapsed, |
| this.delivered, |
| this.droppedAppForceStopped, |
| this.droppedDeviceInactive, |
| this.droppedTooManyPendingMessages, |
| this.droppedTtlExpired, |
| this.pending, |
| }); |
| |
| GoogleFirebaseFcmDataV1beta1MessageOutcomePercents.fromJson(core.Map json_) |
| : this( |
| collapsed: (json_['collapsed'] as core.num?)?.toDouble(), |
| delivered: (json_['delivered'] as core.num?)?.toDouble(), |
| droppedAppForceStopped: (json_['droppedAppForceStopped'] as core.num?) |
| ?.toDouble(), |
| droppedDeviceInactive: (json_['droppedDeviceInactive'] as core.num?) |
| ?.toDouble(), |
| droppedTooManyPendingMessages: |
| (json_['droppedTooManyPendingMessages'] as core.num?)?.toDouble(), |
| droppedTtlExpired: (json_['droppedTtlExpired'] as core.num?) |
| ?.toDouble(), |
| pending: (json_['pending'] as core.num?)?.toDouble(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final collapsed = this.collapsed; |
| final delivered = this.delivered; |
| final droppedAppForceStopped = this.droppedAppForceStopped; |
| final droppedDeviceInactive = this.droppedDeviceInactive; |
| final droppedTooManyPendingMessages = this.droppedTooManyPendingMessages; |
| final droppedTtlExpired = this.droppedTtlExpired; |
| final pending = this.pending; |
| return { |
| 'collapsed': ?collapsed, |
| 'delivered': ?delivered, |
| 'droppedAppForceStopped': ?droppedAppForceStopped, |
| 'droppedDeviceInactive': ?droppedDeviceInactive, |
| 'droppedTooManyPendingMessages': ?droppedTooManyPendingMessages, |
| 'droppedTtlExpired': ?droppedTtlExpired, |
| 'pending': ?pending, |
| }; |
| } |
| } |
| |
| /// Additional information about |
| /// [proxy notification](https://firebase.google.com/docs/cloud-messaging/android/message-priority#proxy) |
| /// delivery. |
| /// |
| /// All percentages are calculated with countNotificationsAccepted as the |
| /// denominator. |
| class GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents { |
| /// The percentage of accepted notifications that failed to be proxied. |
| /// |
| /// This is usually caused by exceptions that occurred while calling |
| /// [notifyAsPackage](https://developer.android.com/reference/android/app/NotificationManager#notifyAsPackage%28java.lang.String,%20java.lang.String,%20int,%20android.app.Notification%29). |
| core.double? failed; |
| |
| /// The percentage of accepted notifications that were successfully proxied by |
| /// [Google Play services](https://developers.google.com/android/guides/overview). |
| core.double? proxied; |
| |
| /// The percentage of accepted notifications that were skipped because the |
| /// messages were not throttled. |
| core.double? skippedNotThrottled; |
| |
| /// The percentage of accepted notifications that were skipped because the app |
| /// disallowed these messages to be proxied. |
| core.double? skippedOptedOut; |
| |
| /// The percentage of accepted notifications that were skipped because |
| /// configurations required for notifications to be proxied were missing. |
| core.double? skippedUnconfigured; |
| |
| /// The percentage of accepted notifications that were skipped because proxy |
| /// notification is unsupported for the recipient. |
| core.double? skippedUnsupported; |
| |
| GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents({ |
| this.failed, |
| this.proxied, |
| this.skippedNotThrottled, |
| this.skippedOptedOut, |
| this.skippedUnconfigured, |
| this.skippedUnsupported, |
| }); |
| |
| GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents.fromJson( |
| core.Map json_, |
| ) : this( |
| failed: (json_['failed'] as core.num?)?.toDouble(), |
| proxied: (json_['proxied'] as core.num?)?.toDouble(), |
| skippedNotThrottled: (json_['skippedNotThrottled'] as core.num?) |
| ?.toDouble(), |
| skippedOptedOut: (json_['skippedOptedOut'] as core.num?)?.toDouble(), |
| skippedUnconfigured: (json_['skippedUnconfigured'] as core.num?) |
| ?.toDouble(), |
| skippedUnsupported: (json_['skippedUnsupported'] as core.num?) |
| ?.toDouble(), |
| ); |
| |
| core.Map<core.String, core.dynamic> toJson() { |
| final failed = this.failed; |
| final proxied = this.proxied; |
| final skippedNotThrottled = this.skippedNotThrottled; |
| final skippedOptedOut = this.skippedOptedOut; |
| final skippedUnconfigured = this.skippedUnconfigured; |
| final skippedUnsupported = this.skippedUnsupported; |
| return { |
| 'failed': ?failed, |
| 'proxied': ?proxied, |
| 'skippedNotThrottled': ?skippedNotThrottled, |
| 'skippedOptedOut': ?skippedOptedOut, |
| 'skippedUnconfigured': ?skippedUnconfigured, |
| 'skippedUnsupported': ?skippedUnsupported, |
| }; |
| } |
| } |
| |
| /// 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, with a zero year (for example, an |
| /// anniversary). * A year on its own, with a zero month and a zero day. * A |
| /// year and month, with a zero day (for example, a credit card expiration |
| /// date). Related types: * google.type.TimeOfDay * google.type.DateTime * |
| /// google.protobuf.Timestamp |
| typedef GoogleTypeDate = $Date; |