defmodule Google.Protobuf.Any do @moduledoc "Auto-generated from `googleapis/google/protobuf/any.proto`" use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ type_url: String.t(), value: binary } defstruct [:type_url, :value] field :type_url, 1, type: :string field :value, 2, type: :bytes end