Class: Google::Apis::DigitalassetlinksV1::ListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DigitalassetlinksV1::ListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/digitalassetlinks_v1/classes.rb,
lib/google/apis/digitalassetlinks_v1/representations.rb,
lib/google/apis/digitalassetlinks_v1/representations.rb
Overview
Response message for the List call.
Instance Attribute Summary collapse
-
#debug_string ⇒ String
Human-readable message containing information intended to help end users understand, reproduce and debug the result.
-
#error_code ⇒ Array<String>
Error codes that describe the result of the List operation.
-
#max_age ⇒ String
From serving time, how much longer the response should be considered valid barring further updates.
-
#statements ⇒ Array<Google::Apis::DigitalassetlinksV1::Statement>
A list of all the matching statements that have been found.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListResponse
constructor
A new instance of ListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListResponse
Returns a new instance of ListResponse.
277 278 279 |
# File 'lib/google/apis/digitalassetlinks_v1/classes.rb', line 277 def initialize(**args) update!(**args) end |
Instance Attribute Details
#debug_string ⇒ String
Human-readable message containing information intended to help end users
understand, reproduce and debug the result. The message will be in English and
we are currently not planning to offer any translations. Please note that no
guarantees are made about the contents or format of this string. Any aspect of
it may be subject to change without notice. You should not attempt to
programmatically parse this data. For programmatic access, use the error_code
field below.
Corresponds to the JSON property debugString
259 260 261 |
# File 'lib/google/apis/digitalassetlinks_v1/classes.rb', line 259 def debug_string @debug_string end |
#error_code ⇒ Array<String>
Error codes that describe the result of the List operation.
Corresponds to the JSON property errorCode
264 265 266 |
# File 'lib/google/apis/digitalassetlinks_v1/classes.rb', line 264 def error_code @error_code end |
#max_age ⇒ String
From serving time, how much longer the response should be considered valid
barring further updates. REQUIRED
Corresponds to the JSON property maxAge
270 271 272 |
# File 'lib/google/apis/digitalassetlinks_v1/classes.rb', line 270 def max_age @max_age end |
#statements ⇒ Array<Google::Apis::DigitalassetlinksV1::Statement>
A list of all the matching statements that have been found.
Corresponds to the JSON property statements
275 276 277 |
# File 'lib/google/apis/digitalassetlinks_v1/classes.rb', line 275 def statements @statements end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
282 283 284 285 286 287 |
# File 'lib/google/apis/digitalassetlinks_v1/classes.rb', line 282 def update!(**args) @debug_string = args[:debug_string] if args.key?(:debug_string) @error_code = args[:error_code] if args.key?(:error_code) @max_age = args[:max_age] if args.key?(:max_age) @statements = args[:statements] if args.key?(:statements) end |