Class: Google::Apis::AdminReportsV1::ActivityEventsStatus
- Inherits:
-
Object
- Object
- Google::Apis::AdminReportsV1::ActivityEventsStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_reports_v1/classes.rb,
lib/google/apis/admin_reports_v1/representations.rb,
lib/google/apis/admin_reports_v1/representations.rb
Overview
Status of the event. Note: Not all events have status.
Instance Attribute Summary collapse
-
#error_code ⇒ String
Error code of the event.
-
#error_message ⇒ String
Error message of the event.
-
#event_status ⇒ String
Status of the event.
-
#http_status_code ⇒ Fixnum
Status code of the event.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ActivityEventsStatus
constructor
A new instance of ActivityEventsStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ActivityEventsStatus
Returns a new instance of ActivityEventsStatus.
571 572 573 |
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 571 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_code ⇒ String
Error code of the event. Note: Field can be empty.
Corresponds to the JSON property errorCode
553 554 555 |
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 553 def error_code @error_code end |
#error_message ⇒ String
Error message of the event. Note: Field can be empty.
Corresponds to the JSON property errorMessage
558 559 560 |
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 558 def @error_message end |
#event_status ⇒ String
Status of the event. Possible values if not empty: - UNKNOWN_EVENT_STATUS -
SUCCEEDED - SUCCEEDED_WITH_WARNINGS - FAILED - SKIPPED
Corresponds to the JSON property eventStatus
564 565 566 |
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 564 def event_status @event_status end |
#http_status_code ⇒ Fixnum
Status code of the event. Note: Field can be empty.
Corresponds to the JSON property httpStatusCode
569 570 571 |
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 569 def http_status_code @http_status_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
576 577 578 579 580 581 |
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 576 def update!(**args) @error_code = args[:error_code] if args.key?(:error_code) @error_message = args[:error_message] if args.key?(:error_message) @event_status = args[:event_status] if args.key?(:event_status) @http_status_code = args[:http_status_code] if args.key?(:http_status_code) end |