syntax = "proto3";
package wkt;
import "google/protobuf/timestamp.proto";
import "google/protobuf/duration.proto";
import "google/protobuf/any.proto";
import "google/protobuf/struct.proto";
import "google/protobuf/field_mask.proto";
message WktUsage {
google.protobuf.Timestamp ts = 1;
google.protobuf.Duration d = 2;
google.protobuf.Any any = 3;
google.protobuf.Struct st = 4;
google.protobuf.Value v = 5;
google.protobuf.ListValue lv = 6;
google.protobuf.FieldMask fm = 7;
repeated google.protobuf.Timestamp tlist = 8;
map<string, google.protobuf.Duration> dmap = 9;
}