Skip to content

Commit 6cd11bd

Browse files
committed
idempotency key changes
1 parent 76e08db commit 6cd11bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proto/aep-api/aep/api/idempotency_key.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ option java_outer_classname = "IdempotencyKeyProto";
99
option java_package = "dev.aep.api";
1010
option objc_class_prefix = "AEP";
1111

12-
import "google/api/field_behavior.proto";
12+
import "aep/api/field_behavior.proto";
1313
import "google/protobuf/descriptor.proto";
1414
import "google/protobuf/timestamp.proto";
1515

@@ -21,13 +21,13 @@ import "google/protobuf/timestamp.proto";
2121
message IdempotencyKey {
2222
// The unique key to use for idempotency.
2323
// string key = 1;
24-
string key = 1 [(google.api.field_behavior) = REQUIRED];
24+
string key = 1 [(aep.api.field_behavior) = REQUIRED];
2525

2626
// The timestamp at which the first request was sent.
2727
//
2828
// If this is further in the past than the lifetime of the idempotency key
2929
// (which *may* exceed the annotated minimum lifetime), the server *must*
3030
// return an error.
3131
google.protobuf.Timestamp first_sent = 2
32-
[(google.api.field_behavior) = REQUIRED];
32+
[(aep.api.field_behavior) = REQUIRED];
3333
}

0 commit comments

Comments
 (0)