Class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ErrorsErrorCode
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ErrorsErrorCode
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchads360_v0/classes.rb,
lib/google/apis/searchads360_v0/representations.rb,
lib/google/apis/searchads360_v0/representations.rb
Overview
The error reason represented by type and enum.
Instance Attribute Summary collapse
-
#authentication_error ⇒ String
Indicates failure to properly authenticate user.
-
#authorization_error ⇒ String
An error encountered when trying to authorize a user.
-
#date_error ⇒ String
The reasons for the date error Corresponds to the JSON property
dateError. -
#date_range_error ⇒ String
The reasons for the date range error Corresponds to the JSON property
dateRangeError. -
#distinct_error ⇒ String
The reasons for the distinct error Corresponds to the JSON property
distinctError. -
#header_error ⇒ String
The reasons for the header error.
-
#internal_error ⇒ String
An unexpected server-side error.
-
#query_error ⇒ String
An error with the query Corresponds to the JSON property
queryError. -
#quota_error ⇒ String
An error with the amonut of quota remaining.
-
#request_error ⇒ String
An error caused by the request Corresponds to the JSON property
requestError. -
#size_limit_error ⇒ String
The reasons for the size limit error Corresponds to the JSON property
sizeLimitError.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V0ErrorsErrorCode
constructor
A new instance of GoogleAdsSearchads360V0ErrorsErrorCode.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V0ErrorsErrorCode
Returns a new instance of GoogleAdsSearchads360V0ErrorsErrorCode.
1570 1571 1572 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1570 def initialize(**args) update!(**args) end |
Instance Attribute Details
#authentication_error ⇒ String
Indicates failure to properly authenticate user.
Corresponds to the JSON property authenticationError
1518 1519 1520 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1518 def authentication_error @authentication_error end |
#authorization_error ⇒ String
An error encountered when trying to authorize a user.
Corresponds to the JSON property authorizationError
1523 1524 1525 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1523 def @authorization_error end |
#date_error ⇒ String
The reasons for the date error
Corresponds to the JSON property dateError
1528 1529 1530 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1528 def date_error @date_error end |
#date_range_error ⇒ String
The reasons for the date range error
Corresponds to the JSON property dateRangeError
1533 1534 1535 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1533 def date_range_error @date_range_error end |
#distinct_error ⇒ String
The reasons for the distinct error
Corresponds to the JSON property distinctError
1538 1539 1540 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1538 def distinct_error @distinct_error end |
#header_error ⇒ String
The reasons for the header error.
Corresponds to the JSON property headerError
1543 1544 1545 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1543 def header_error @header_error end |
#internal_error ⇒ String
An unexpected server-side error.
Corresponds to the JSON property internalError
1548 1549 1550 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1548 def internal_error @internal_error end |
#query_error ⇒ String
An error with the query
Corresponds to the JSON property queryError
1553 1554 1555 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1553 def query_error @query_error end |
#quota_error ⇒ String
An error with the amonut of quota remaining.
Corresponds to the JSON property quotaError
1558 1559 1560 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1558 def quota_error @quota_error end |
#request_error ⇒ String
An error caused by the request
Corresponds to the JSON property requestError
1563 1564 1565 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1563 def request_error @request_error end |
#size_limit_error ⇒ String
The reasons for the size limit error
Corresponds to the JSON property sizeLimitError
1568 1569 1570 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1568 def size_limit_error @size_limit_error end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 1575 def update!(**args) @authentication_error = args[:authentication_error] if args.key?(:authentication_error) @authorization_error = args[:authorization_error] if args.key?(:authorization_error) @date_error = args[:date_error] if args.key?(:date_error) @date_range_error = args[:date_range_error] if args.key?(:date_range_error) @distinct_error = args[:distinct_error] if args.key?(:distinct_error) @header_error = args[:header_error] if args.key?(:header_error) @internal_error = args[:internal_error] if args.key?(:internal_error) @query_error = args[:query_error] if args.key?(:query_error) @quota_error = args[:quota_error] if args.key?(:quota_error) @request_error = args[:request_error] if args.key?(:request_error) @size_limit_error = args[:size_limit_error] if args.key?(:size_limit_error) end |