You've already forked npm-core-sdk
Latest generation
This commit is contained in:
178
notifInput.ts
178
notifInput.ts
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.9.6
|
||||
// @generated by protobuf-ts 2.9.6 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "notifInput.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -28,47 +28,47 @@ export interface NotifCreatedPayload {
|
||||
*
|
||||
* @generated from protobuf field: api.NotifTypeEnum NotificationType = 1 [json_name = "NotificationType"];
|
||||
*/
|
||||
notificationType: NotifTypeEnum;
|
||||
NotificationType: NotifTypeEnum;
|
||||
/**
|
||||
* Identifier of the issuer
|
||||
*
|
||||
* @generated from protobuf field: string IssuerID = 2 [json_name = "IssuerID"];
|
||||
*/
|
||||
issuerID: string;
|
||||
IssuerID: string;
|
||||
/**
|
||||
* List of contacts
|
||||
*
|
||||
* @generated from protobuf field: repeated string Contacts = 3 [json_name = "Contacts"];
|
||||
*/
|
||||
contacts: string[];
|
||||
Contacts: string[];
|
||||
/**
|
||||
* Details of the notification
|
||||
*
|
||||
* @generated from protobuf field: string Details = 4 [json_name = "Details"];
|
||||
*/
|
||||
details: string;
|
||||
Details: string;
|
||||
/**
|
||||
* Entity domain
|
||||
*
|
||||
* @generated from protobuf field: string EntityDomain = 5 [json_name = "EntityDomain"];
|
||||
*/
|
||||
entityDomain: string;
|
||||
EntityDomain: string;
|
||||
/**
|
||||
* Type of entity
|
||||
*
|
||||
* @generated from protobuf field: string EntityType = 6 [json_name = "EntityType"];
|
||||
*/
|
||||
entityType: string;
|
||||
EntityType: string;
|
||||
/**
|
||||
* ID of entity
|
||||
*
|
||||
* @generated from protobuf field: string EntityRefID = 7 [json_name = "EntityRefID"];
|
||||
*/
|
||||
entityRefID: string;
|
||||
EntityRefID: string;
|
||||
/**
|
||||
* @generated from protobuf field: string Tags = 8 [json_name = "Tags"];
|
||||
*/
|
||||
tags: string;
|
||||
Tags: string;
|
||||
}
|
||||
/**
|
||||
* Event message
|
||||
@@ -79,15 +79,15 @@ export interface NotifCreatedEvent {
|
||||
/**
|
||||
* @generated from protobuf field: api.EventHeader Header = 1 [json_name = "Header"];
|
||||
*/
|
||||
header?: EventHeader;
|
||||
Header?: EventHeader;
|
||||
/**
|
||||
* @generated from protobuf field: api.EntityID ID = 2 [json_name = "ID"];
|
||||
*/
|
||||
iD?: EntityID;
|
||||
ID?: EntityID;
|
||||
/**
|
||||
* @generated from protobuf field: api.NotifCreatedPayload Payload = 3 [json_name = "Payload"];
|
||||
*/
|
||||
payload?: NotifCreatedPayload;
|
||||
Payload?: NotifCreatedPayload;
|
||||
}
|
||||
/**
|
||||
* API Request
|
||||
@@ -98,15 +98,15 @@ export interface NotifCreatedRequest {
|
||||
/**
|
||||
* @generated from protobuf field: api.RequestProjectHeader Header = 1 [json_name = "Header"];
|
||||
*/
|
||||
header?: RequestProjectHeader;
|
||||
Header?: RequestProjectHeader;
|
||||
/**
|
||||
* @generated from protobuf field: api.EntityID ID = 2 [json_name = "ID"];
|
||||
*/
|
||||
iD?: EntityID;
|
||||
ID?: EntityID;
|
||||
/**
|
||||
* @generated from protobuf field: api.NotifCreatedPayload Payload = 3 [json_name = "Payload"];
|
||||
*/
|
||||
payload?: NotifCreatedPayload;
|
||||
Payload?: NotifCreatedPayload;
|
||||
}
|
||||
/**
|
||||
* API Response
|
||||
@@ -117,36 +117,36 @@ export interface NotifCreatedResponse {
|
||||
/**
|
||||
* @generated from protobuf field: api.ResponseHeader Header = 1 [json_name = "Header"];
|
||||
*/
|
||||
header?: ResponseHeader;
|
||||
Header?: ResponseHeader;
|
||||
/**
|
||||
* @generated from protobuf field: api.EntityID ID = 2 [json_name = "ID"];
|
||||
*/
|
||||
iD?: EntityID;
|
||||
ID?: EntityID;
|
||||
}
|
||||
// @generated message type with reflection information, may provide speed optimized methods
|
||||
class NotifCreatedPayload$Type extends MessageType<NotifCreatedPayload> {
|
||||
constructor() {
|
||||
super("api.NotifCreatedPayload", [
|
||||
{ no: 1, name: "NotificationType", kind: "enum", jsonName: "NotificationType", T: () => ["api.NotifTypeEnum", NotifTypeEnum], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Type of change to be notified" } } },
|
||||
{ no: 2, name: "IssuerID", kind: "scalar", jsonName: "IssuerID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { pattern: "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the issuer (uuid format)" } } },
|
||||
{ no: 3, name: "Contacts", kind: "scalar", jsonName: "Contacts", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { repeated: { items: { string: { pattern: "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$" } } } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifiers of the contact to notity (uuid format)" } } },
|
||||
{ no: 4, name: "Details", kind: "scalar", jsonName: "Details", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 5, name: "EntityDomain", kind: "scalar", jsonName: "EntityDomain", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { in: ["trade", "collab"] } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Entity domain" } } },
|
||||
{ no: 6, name: "EntityType", kind: "scalar", jsonName: "EntityType", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Type of entity" } } },
|
||||
{ no: 7, name: "EntityRefID", kind: "scalar", jsonName: "EntityRefID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "ID of entity" } } },
|
||||
{ no: 8, name: "Tags", kind: "scalar", jsonName: "Tags", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Tags" } } }
|
||||
{ no: 1, name: "NotificationType", kind: "enum", localName: "NotificationType", jsonName: "NotificationType", T: () => ["api.NotifTypeEnum", NotifTypeEnum], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Type of change to be notified" } } },
|
||||
{ no: 2, name: "IssuerID", kind: "scalar", localName: "IssuerID", jsonName: "IssuerID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { pattern: "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the issuer (uuid format)" } } },
|
||||
{ no: 3, name: "Contacts", kind: "scalar", localName: "Contacts", jsonName: "Contacts", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { repeated: { items: { string: { pattern: "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$" } } } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifiers of the contact to notity (uuid format)" } } },
|
||||
{ no: 4, name: "Details", kind: "scalar", localName: "Details", jsonName: "Details", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 5, name: "EntityDomain", kind: "scalar", localName: "EntityDomain", jsonName: "EntityDomain", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { in: ["trade", "collab"] } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Entity domain" } } },
|
||||
{ no: 6, name: "EntityType", kind: "scalar", localName: "EntityType", jsonName: "EntityType", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Type of entity" } } },
|
||||
{ no: 7, name: "EntityRefID", kind: "scalar", localName: "EntityRefID", jsonName: "EntityRefID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "ID of entity" } } },
|
||||
{ no: 8, name: "Tags", kind: "scalar", localName: "Tags", jsonName: "Tags", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Tags" } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["NotificationType", "IssuerID", "Contacts", "EntityDomain", "EntityType", "EntityRefID"] } }, "api.messageType": "Event", "api.payload": true, "api.inputEvent": "Created" });
|
||||
}
|
||||
create(value?: PartialMessage<NotifCreatedPayload>): NotifCreatedPayload {
|
||||
const message = globalThis.Object.create((this.messagePrototype!));
|
||||
message.notificationType = 0;
|
||||
message.issuerID = "";
|
||||
message.contacts = [];
|
||||
message.details = "";
|
||||
message.entityDomain = "";
|
||||
message.entityType = "";
|
||||
message.entityRefID = "";
|
||||
message.tags = "";
|
||||
message.NotificationType = 0;
|
||||
message.IssuerID = "";
|
||||
message.Contacts = [];
|
||||
message.Details = "";
|
||||
message.EntityDomain = "";
|
||||
message.EntityType = "";
|
||||
message.EntityRefID = "";
|
||||
message.Tags = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<NotifCreatedPayload>(this, message, value);
|
||||
return message;
|
||||
@@ -157,28 +157,28 @@ class NotifCreatedPayload$Type extends MessageType<NotifCreatedPayload> {
|
||||
let [fieldNo, wireType] = reader.tag();
|
||||
switch (fieldNo) {
|
||||
case /* api.NotifTypeEnum NotificationType = 1 [json_name = "NotificationType"];*/ 1:
|
||||
message.notificationType = reader.int32();
|
||||
message.NotificationType = reader.int32();
|
||||
break;
|
||||
case /* string IssuerID = 2 [json_name = "IssuerID"];*/ 2:
|
||||
message.issuerID = reader.string();
|
||||
message.IssuerID = reader.string();
|
||||
break;
|
||||
case /* repeated string Contacts = 3 [json_name = "Contacts"];*/ 3:
|
||||
message.contacts.push(reader.string());
|
||||
message.Contacts.push(reader.string());
|
||||
break;
|
||||
case /* string Details = 4 [json_name = "Details"];*/ 4:
|
||||
message.details = reader.string();
|
||||
message.Details = reader.string();
|
||||
break;
|
||||
case /* string EntityDomain = 5 [json_name = "EntityDomain"];*/ 5:
|
||||
message.entityDomain = reader.string();
|
||||
message.EntityDomain = reader.string();
|
||||
break;
|
||||
case /* string EntityType = 6 [json_name = "EntityType"];*/ 6:
|
||||
message.entityType = reader.string();
|
||||
message.EntityType = reader.string();
|
||||
break;
|
||||
case /* string EntityRefID = 7 [json_name = "EntityRefID"];*/ 7:
|
||||
message.entityRefID = reader.string();
|
||||
message.EntityRefID = reader.string();
|
||||
break;
|
||||
case /* string Tags = 8 [json_name = "Tags"];*/ 8:
|
||||
message.tags = reader.string();
|
||||
message.Tags = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
@@ -193,29 +193,29 @@ class NotifCreatedPayload$Type extends MessageType<NotifCreatedPayload> {
|
||||
}
|
||||
internalBinaryWrite(message: NotifCreatedPayload, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||
/* api.NotifTypeEnum NotificationType = 1 [json_name = "NotificationType"]; */
|
||||
if (message.notificationType !== 0)
|
||||
writer.tag(1, WireType.Varint).int32(message.notificationType);
|
||||
if (message.NotificationType !== 0)
|
||||
writer.tag(1, WireType.Varint).int32(message.NotificationType);
|
||||
/* string IssuerID = 2 [json_name = "IssuerID"]; */
|
||||
if (message.issuerID !== "")
|
||||
writer.tag(2, WireType.LengthDelimited).string(message.issuerID);
|
||||
if (message.IssuerID !== "")
|
||||
writer.tag(2, WireType.LengthDelimited).string(message.IssuerID);
|
||||
/* repeated string Contacts = 3 [json_name = "Contacts"]; */
|
||||
for (let i = 0; i < message.contacts.length; i++)
|
||||
writer.tag(3, WireType.LengthDelimited).string(message.contacts[i]);
|
||||
for (let i = 0; i < message.Contacts.length; i++)
|
||||
writer.tag(3, WireType.LengthDelimited).string(message.Contacts[i]);
|
||||
/* string Details = 4 [json_name = "Details"]; */
|
||||
if (message.details !== "")
|
||||
writer.tag(4, WireType.LengthDelimited).string(message.details);
|
||||
if (message.Details !== "")
|
||||
writer.tag(4, WireType.LengthDelimited).string(message.Details);
|
||||
/* string EntityDomain = 5 [json_name = "EntityDomain"]; */
|
||||
if (message.entityDomain !== "")
|
||||
writer.tag(5, WireType.LengthDelimited).string(message.entityDomain);
|
||||
if (message.EntityDomain !== "")
|
||||
writer.tag(5, WireType.LengthDelimited).string(message.EntityDomain);
|
||||
/* string EntityType = 6 [json_name = "EntityType"]; */
|
||||
if (message.entityType !== "")
|
||||
writer.tag(6, WireType.LengthDelimited).string(message.entityType);
|
||||
if (message.EntityType !== "")
|
||||
writer.tag(6, WireType.LengthDelimited).string(message.EntityType);
|
||||
/* string EntityRefID = 7 [json_name = "EntityRefID"]; */
|
||||
if (message.entityRefID !== "")
|
||||
writer.tag(7, WireType.LengthDelimited).string(message.entityRefID);
|
||||
if (message.EntityRefID !== "")
|
||||
writer.tag(7, WireType.LengthDelimited).string(message.EntityRefID);
|
||||
/* string Tags = 8 [json_name = "Tags"]; */
|
||||
if (message.tags !== "")
|
||||
writer.tag(8, WireType.LengthDelimited).string(message.tags);
|
||||
if (message.Tags !== "")
|
||||
writer.tag(8, WireType.LengthDelimited).string(message.Tags);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
@@ -230,9 +230,9 @@ export const NotifCreatedPayload = new NotifCreatedPayload$Type();
|
||||
class NotifCreatedEvent$Type extends MessageType<NotifCreatedEvent> {
|
||||
constructor() {
|
||||
super("api.NotifCreatedEvent", [
|
||||
{ no: 1, name: "Header", kind: "message", jsonName: "Header", T: () => EventHeader, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 2, name: "ID", kind: "message", jsonName: "ID", T: () => EntityID, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 3, name: "Payload", kind: "message", jsonName: "Payload", T: () => NotifCreatedPayload, options: { "validate.rules": { message: { required: true } } } }
|
||||
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => EventHeader, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 3, name: "Payload", kind: "message", localName: "Payload", jsonName: "Payload", T: () => NotifCreatedPayload, options: { "validate.rules": { message: { required: true } } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "EntityID", "Payload"] } }, "api.messageType": "Event", "api.inputEvent": "Created" });
|
||||
}
|
||||
create(value?: PartialMessage<NotifCreatedEvent>): NotifCreatedEvent {
|
||||
@@ -247,13 +247,13 @@ class NotifCreatedEvent$Type extends MessageType<NotifCreatedEvent> {
|
||||
let [fieldNo, wireType] = reader.tag();
|
||||
switch (fieldNo) {
|
||||
case /* api.EventHeader Header = 1 [json_name = "Header"];*/ 1:
|
||||
message.header = EventHeader.internalBinaryRead(reader, reader.uint32(), options, message.header);
|
||||
message.Header = EventHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
||||
break;
|
||||
case /* api.EntityID ID = 2 [json_name = "ID"];*/ 2:
|
||||
message.iD = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.iD);
|
||||
message.ID = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.ID);
|
||||
break;
|
||||
case /* api.NotifCreatedPayload Payload = 3 [json_name = "Payload"];*/ 3:
|
||||
message.payload = NotifCreatedPayload.internalBinaryRead(reader, reader.uint32(), options, message.payload);
|
||||
message.Payload = NotifCreatedPayload.internalBinaryRead(reader, reader.uint32(), options, message.Payload);
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
@@ -268,14 +268,14 @@ class NotifCreatedEvent$Type extends MessageType<NotifCreatedEvent> {
|
||||
}
|
||||
internalBinaryWrite(message: NotifCreatedEvent, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||
/* api.EventHeader Header = 1 [json_name = "Header"]; */
|
||||
if (message.header)
|
||||
EventHeader.internalBinaryWrite(message.header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||
if (message.Header)
|
||||
EventHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||
/* api.EntityID ID = 2 [json_name = "ID"]; */
|
||||
if (message.iD)
|
||||
EntityID.internalBinaryWrite(message.iD, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||
if (message.ID)
|
||||
EntityID.internalBinaryWrite(message.ID, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||
/* api.NotifCreatedPayload Payload = 3 [json_name = "Payload"]; */
|
||||
if (message.payload)
|
||||
NotifCreatedPayload.internalBinaryWrite(message.payload, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
||||
if (message.Payload)
|
||||
NotifCreatedPayload.internalBinaryWrite(message.Payload, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
@@ -290,9 +290,9 @@ export const NotifCreatedEvent = new NotifCreatedEvent$Type();
|
||||
class NotifCreatedRequest$Type extends MessageType<NotifCreatedRequest> {
|
||||
constructor() {
|
||||
super("api.NotifCreatedRequest", [
|
||||
{ no: 1, name: "Header", kind: "message", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 2, name: "ID", kind: "message", jsonName: "ID", T: () => EntityID, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 3, name: "Payload", kind: "message", jsonName: "Payload", T: () => NotifCreatedPayload, options: { "validate.rules": { message: { required: true } } } }
|
||||
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 3, name: "Payload", kind: "message", localName: "Payload", jsonName: "Payload", T: () => NotifCreatedPayload, options: { "validate.rules": { message: { required: true } } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "EntityID", "Payload"] } }, "api.messageType": "Request", "api.inputEvent": "Created" });
|
||||
}
|
||||
create(value?: PartialMessage<NotifCreatedRequest>): NotifCreatedRequest {
|
||||
@@ -307,13 +307,13 @@ class NotifCreatedRequest$Type extends MessageType<NotifCreatedRequest> {
|
||||
let [fieldNo, wireType] = reader.tag();
|
||||
switch (fieldNo) {
|
||||
case /* api.RequestProjectHeader Header = 1 [json_name = "Header"];*/ 1:
|
||||
message.header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.header);
|
||||
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
||||
break;
|
||||
case /* api.EntityID ID = 2 [json_name = "ID"];*/ 2:
|
||||
message.iD = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.iD);
|
||||
message.ID = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.ID);
|
||||
break;
|
||||
case /* api.NotifCreatedPayload Payload = 3 [json_name = "Payload"];*/ 3:
|
||||
message.payload = NotifCreatedPayload.internalBinaryRead(reader, reader.uint32(), options, message.payload);
|
||||
message.Payload = NotifCreatedPayload.internalBinaryRead(reader, reader.uint32(), options, message.Payload);
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
@@ -328,14 +328,14 @@ class NotifCreatedRequest$Type extends MessageType<NotifCreatedRequest> {
|
||||
}
|
||||
internalBinaryWrite(message: NotifCreatedRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||
/* api.RequestProjectHeader Header = 1 [json_name = "Header"]; */
|
||||
if (message.header)
|
||||
RequestProjectHeader.internalBinaryWrite(message.header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||
if (message.Header)
|
||||
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||
/* api.EntityID ID = 2 [json_name = "ID"]; */
|
||||
if (message.iD)
|
||||
EntityID.internalBinaryWrite(message.iD, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||
if (message.ID)
|
||||
EntityID.internalBinaryWrite(message.ID, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||
/* api.NotifCreatedPayload Payload = 3 [json_name = "Payload"]; */
|
||||
if (message.payload)
|
||||
NotifCreatedPayload.internalBinaryWrite(message.payload, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
||||
if (message.Payload)
|
||||
NotifCreatedPayload.internalBinaryWrite(message.Payload, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
@@ -350,8 +350,8 @@ export const NotifCreatedRequest = new NotifCreatedRequest$Type();
|
||||
class NotifCreatedResponse$Type extends MessageType<NotifCreatedResponse> {
|
||||
constructor() {
|
||||
super("api.NotifCreatedResponse", [
|
||||
{ no: 1, name: "Header", kind: "message", jsonName: "Header", T: () => ResponseHeader },
|
||||
{ no: 2, name: "ID", kind: "message", jsonName: "ID", T: () => EntityID }
|
||||
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => ResponseHeader },
|
||||
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID }
|
||||
], { "api.messageType": "Response", "api.inputEvent": "Created" });
|
||||
}
|
||||
create(value?: PartialMessage<NotifCreatedResponse>): NotifCreatedResponse {
|
||||
@@ -366,10 +366,10 @@ class NotifCreatedResponse$Type extends MessageType<NotifCreatedResponse> {
|
||||
let [fieldNo, wireType] = reader.tag();
|
||||
switch (fieldNo) {
|
||||
case /* api.ResponseHeader Header = 1 [json_name = "Header"];*/ 1:
|
||||
message.header = ResponseHeader.internalBinaryRead(reader, reader.uint32(), options, message.header);
|
||||
message.Header = ResponseHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
||||
break;
|
||||
case /* api.EntityID ID = 2 [json_name = "ID"];*/ 2:
|
||||
message.iD = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.iD);
|
||||
message.ID = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.ID);
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
@@ -384,11 +384,11 @@ class NotifCreatedResponse$Type extends MessageType<NotifCreatedResponse> {
|
||||
}
|
||||
internalBinaryWrite(message: NotifCreatedResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||
/* api.ResponseHeader Header = 1 [json_name = "Header"]; */
|
||||
if (message.header)
|
||||
ResponseHeader.internalBinaryWrite(message.header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||
if (message.Header)
|
||||
ResponseHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||
/* api.EntityID ID = 2 [json_name = "ID"]; */
|
||||
if (message.iD)
|
||||
EntityID.internalBinaryWrite(message.iD, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||
if (message.ID)
|
||||
EntityID.internalBinaryWrite(message.ID, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user