-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Automated regeneration of PageSpeedOnline client (#12068)
Auto-created at 2024-08-31 13:12:29 +0000 using the toys pull request generator.
- Loading branch information
1 parent
d829ddc
commit bccb7f7
Showing
5 changed files
with
64 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
clients/page_speed_online/lib/google_api/page_speed_online/v5/model/metric_savings.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Copyright 2019 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# NOTE: This file is auto generated by the elixir code generator program. | ||
# Do not edit this file manually. | ||
|
||
defmodule GoogleApi.PageSpeedOnline.V5.Model.MetricSavings do | ||
@moduledoc """ | ||
The metric savings of the audit. | ||
## Attributes | ||
* `CLS` (*type:* `float()`, *default:* `nil`) - Optional. Optional numeric value representing the audit's savings for the CLS metric. | ||
* `FCP` (*type:* `float()`, *default:* `nil`) - Optional. Optional numeric value representing the audit's savings for the FCP metric. | ||
* `INP` (*type:* `float()`, *default:* `nil`) - Optional. Optional numeric value representing the audit's savings for the INP metric. | ||
* `LCP` (*type:* `float()`, *default:* `nil`) - Optional. Optional numeric value representing the audit's savings for the LCP metric. | ||
* `TBT` (*type:* `float()`, *default:* `nil`) - Optional. Optional numeric value representing the audit's savings for the TBT metric. | ||
""" | ||
|
||
use GoogleApi.Gax.ModelBase | ||
|
||
@type t :: %__MODULE__{ | ||
:CLS => float() | nil, | ||
:FCP => float() | nil, | ||
:INP => float() | nil, | ||
:LCP => float() | nil, | ||
:TBT => float() | nil | ||
} | ||
|
||
field(:CLS) | ||
field(:FCP) | ||
field(:INP) | ||
field(:LCP) | ||
field(:TBT) | ||
end | ||
|
||
defimpl Poison.Decoder, for: GoogleApi.PageSpeedOnline.V5.Model.MetricSavings do | ||
def decode(value, options) do | ||
GoogleApi.PageSpeedOnline.V5.Model.MetricSavings.decode(value, options) | ||
end | ||
end | ||
|
||
defimpl Poison.Encoder, for: GoogleApi.PageSpeedOnline.V5.Model.MetricSavings do | ||
def encode(value, options) do | ||
GoogleApi.Gax.ModelBase.encode(value, options) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters