Skip to content

Commit cd7096a

Browse files
author
makarov.d
committed
в GetPartnerEventsRequest поле Directions заменено на DocumentDirections для однородности с GetDocflowEventsRequest
1 parent 06f1d78 commit cd7096a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

proto/PartnerEvents/PartnerEventsApi.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package Diadoc.Api.Proto.PartnerEvents;
1010
message GetPartnerEventsRequest
1111
{
1212
required string Cursor = 1;
13-
repeated string Directions = 2;
13+
repeated string DocumentDirections = 2;
1414
repeated string MessageTypes = 3;
1515
optional int32 Limit = 4 [default = 100];
1616
}

src/Proto/PartnerEvents/PartnerEventsApi.proto.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ public string Cursor
2626
get { return _Cursor; }
2727
set { _Cursor = value; }
2828
}
29-
private readonly global::System.Collections.Generic.List<string> _Directions = new global::System.Collections.Generic.List<string>();
30-
[global::ProtoBuf.ProtoMember(2, Name=@"Directions", DataFormat = global::ProtoBuf.DataFormat.Default)]
31-
public global::System.Collections.Generic.List<string> Directions
29+
private readonly global::System.Collections.Generic.List<string> _DocumentDirections = new global::System.Collections.Generic.List<string>();
30+
[global::ProtoBuf.ProtoMember(2, Name=@"DocumentDirections", DataFormat = global::ProtoBuf.DataFormat.Default)]
31+
public global::System.Collections.Generic.List<string> DocumentDirections
3232
{
33-
get { return _Directions; }
33+
get { return _DocumentDirections; }
3434
}
3535

3636
private readonly global::System.Collections.Generic.List<string> _MessageTypes = new global::System.Collections.Generic.List<string>();
@@ -118,4 +118,4 @@ public Diadoc.Api.Proto.Docflow.DocumentWithDocflowV4 Document
118118
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
119119
}
120120

121-
}
121+
}

0 commit comments

Comments
 (0)