Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@
| tickets_amount_vacant | [uint32](#uint32) | | количество свободных к продаже билетов в мероприятии |
| smart_tickets | [SmartTicketSetting](#v2-SmartTicketSetting) | | настройки смарт-билетов |
| mods | [Mod](#v2-Mod) | repeated | дополнительная информация по скидкам на мероприятие |
| updated_at | [google.protobuf.Timestamp](#google-protobuf-Timestamp) | | дата и время последнего обновления информации о мероприятии |
| additional | [google.protobuf.Any](#google-protobuf-Any) | | служебное поле |


Expand Down Expand Up @@ -1282,4 +1283,3 @@
| <a name="bool" /> bool | | bool | boolean | boolean | bool | bool | boolean | TrueClass/FalseClass |
| <a name="string" /> string | A string must always contain UTF-8 encoded or 7-bit ASCII text. | string | String | str/unicode | string | string | string | String (UTF-8) |
| <a name="bytes" /> bytes | May contain any arbitrary sequence of bytes. | string | ByteString | str | []byte | ByteString | string | String (ASCII-8BIT) |

3 changes: 3 additions & 0 deletions proto/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ package v2;
import "generic.proto";
import "google/protobuf/any.proto";
import "mods.proto";
import "google/protobuf/timestamp.proto";

message EventsRequest {
enum Status {
Expand Down Expand Up @@ -148,5 +149,7 @@ message Event {

repeated Mod mods = 50; // дополнительная информация по скидкам на мероприятие

google.protobuf.Timestamp updated_at = 70; // дата и время последнего обновления информации о мероприятии

google.protobuf.Any additional = 255; // служебное поле
}