Current section

Files

Jump to
weddell lib proto protobuf field_mask.pb.ex
Raw

lib/proto/protobuf/field_mask.pb.ex

defmodule Google.Protobuf.FieldMask do
@moduledoc false
use Protobuf, syntax: :proto3
@type t :: %__MODULE__{
paths: [String.t]
}
defstruct [:paths]
field :paths, 1, repeated: true, type: :string
end