Current section
Files
Jump to
Current section
Files
lib/google/api/documentation.pb.ex
defmodule Google.Api.Documentation do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :summary, 1, type: :string
field :pages, 5, repeated: true, type: Google.Api.Page
field :rules, 3, repeated: true, type: Google.Api.DocumentationRule
field :documentation_root_url, 4, type: :string, json_name: "documentationRootUrl"
field :service_root_url, 6, type: :string, json_name: "serviceRootUrl"
field :overview, 2, type: :string
end
defmodule Google.Api.DocumentationRule do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :selector, 1, type: :string
field :description, 2, type: :string
field :deprecation_description, 3, type: :string, json_name: "deprecationDescription"
end
defmodule Google.Api.Page do
@moduledoc false
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :name, 1, type: :string
field :content, 2, type: :string
field :subpages, 3, repeated: true, type: Google.Api.Page
end