Current section

Files

Jump to
protox lib google protobuf string_value.ex
Raw

lib/google/protobuf/string_value.ex

defmodule Protox.Google.Protobuf.StringValue do
@moduledoc false
use Protox.Define,
enums_schemas: %{},
messages_schemas: %{
Google.Protobuf.StringValue => %Protox.MessageSchema{
name: Google.Protobuf.StringValue,
syntax: :proto3,
fields: %{
value:
Protox.Field.new!(
kind: %Protox.Scalar{default_value: ""},
label: :optional,
name: :value,
tag: 1,
type: :string
)
}
}
}
end