BILLING_DISABLED constant

ErrorReason const BILLING_DISABLED

The request whose associated billing account is disabled.

Example of an ErrorInfo when the consumer "projects/123" fails to contact "pubsub.googleapis.com" service because the associated billing account is disabled:

{ "reason": "BILLING_DISABLED",
  "domain": "googleapis.com",
  "metadata": {
    "consumer": "projects/123",
    "service": "pubsub.googleapis.com"
  }
}

This response indicates the billing account associated has been disabled.

Implementation

static const ErrorReason BILLING_DISABLED =
    ErrorReason._(2, _omitEnumNames ? '' : 'BILLING_DISABLED');