defmodule Google.Api.Documentation do @moduledoc false use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3 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, protoc_gen_elixir_version: "0.15.0", syntax: :proto3 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, protoc_gen_elixir_version: "0.15.0", syntax: :proto3 field(:name, 1, type: :string) field(:content, 2, type: :string) field(:subpages, 3, repeated: true, type: Google.Api.Page) end