Class: Google::Apis::AcceleratedmobilepageurlV1::BatchGetAmpUrlsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AcceleratedmobilepageurlV1::BatchGetAmpUrlsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/acceleratedmobilepageurl_v1/classes.rb,
generated/google/apis/acceleratedmobilepageurl_v1/representations.rb,
generated/google/apis/acceleratedmobilepageurl_v1/representations.rb
Overview
Batch AMP URL response.
Instance Attribute Summary collapse
-
#amp_urls ⇒ Array<Google::Apis::AcceleratedmobilepageurlV1::AmpUrl>
For each URL in BatchAmpUrlsRequest, the URL response.
-
#url_errors ⇒ Array<Google::Apis::AcceleratedmobilepageurlV1::AmpUrlError>
The errors for requested URLs that have no AMP URL.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BatchGetAmpUrlsResponse
constructor
A new instance of BatchGetAmpUrlsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BatchGetAmpUrlsResponse
Returns a new instance of BatchGetAmpUrlsResponse.
130 131 132 |
# File 'generated/google/apis/acceleratedmobilepageurl_v1/classes.rb', line 130 def initialize(**args) update!(**args) end |
Instance Attribute Details
#amp_urls ⇒ Array<Google::Apis::AcceleratedmobilepageurlV1::AmpUrl>
For each URL in BatchAmpUrlsRequest, the URL response. The response might not
be in the same order as URLs in the batch request. If BatchAmpUrlsRequest
contains duplicate URLs, AmpUrl is generated only once.
Corresponds to the JSON property ampUrls
123 124 125 |
# File 'generated/google/apis/acceleratedmobilepageurl_v1/classes.rb', line 123 def amp_urls @amp_urls end |
#url_errors ⇒ Array<Google::Apis::AcceleratedmobilepageurlV1::AmpUrlError>
The errors for requested URLs that have no AMP URL.
Corresponds to the JSON property urlErrors
128 129 130 |
# File 'generated/google/apis/acceleratedmobilepageurl_v1/classes.rb', line 128 def url_errors @url_errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
135 136 137 138 |
# File 'generated/google/apis/acceleratedmobilepageurl_v1/classes.rb', line 135 def update!(**args) @amp_urls = args[:amp_urls] if args.key?(:amp_urls) @url_errors = args[:url_errors] if args.key?(:url_errors) end |