@@ -86978,6 +86978,206 @@ export namespace BI {
8697886978 public static getTypeUrl(typeUrlPrefix?: string): string;
8697986979 }
8698086980
86981+ /** Properties of an EventResponse. */
86982+ interface IEventResponse {
86983+
86984+ /** EventResponse index */
86985+ index?: (number|null);
86986+
86987+ /** EventResponse status */
86988+ status?: (boolean|null);
86989+ }
86990+
86991+ /** Represents an EventResponse. */
86992+ class EventResponse implements IEventResponse {
86993+
86994+ /**
86995+ * Constructs a new EventResponse.
86996+ * @param [properties] Properties to set
86997+ */
86998+ constructor(properties?: BI.IEventResponse);
86999+
87000+ /** EventResponse index. */
87001+ public index: number;
87002+
87003+ /** EventResponse status. */
87004+ public status: boolean;
87005+
87006+ /**
87007+ * Creates a new EventResponse instance using the specified properties.
87008+ * @param [properties] Properties to set
87009+ * @returns EventResponse instance
87010+ */
87011+ public static create(properties?: BI.IEventResponse): BI.EventResponse;
87012+
87013+ /**
87014+ * Encodes the specified EventResponse message. Does not implicitly {@link BI.EventResponse.verify|verify} messages.
87015+ * @param message EventResponse message or plain object to encode
87016+ * @param [writer] Writer to encode to
87017+ * @returns Writer
87018+ */
87019+ public static encode(message: BI.IEventResponse, writer?: $protobuf.Writer): $protobuf.Writer;
87020+
87021+ /**
87022+ * Encodes the specified EventResponse message, length delimited. Does not implicitly {@link BI.EventResponse.verify|verify} messages.
87023+ * @param message EventResponse message or plain object to encode
87024+ * @param [writer] Writer to encode to
87025+ * @returns Writer
87026+ */
87027+ public static encodeDelimited(message: BI.IEventResponse, writer?: $protobuf.Writer): $protobuf.Writer;
87028+
87029+ /**
87030+ * Decodes an EventResponse message from the specified reader or buffer.
87031+ * @param reader Reader or buffer to decode from
87032+ * @param [length] Message length if known beforehand
87033+ * @returns EventResponse
87034+ * @throws {Error} If the payload is not a reader or valid buffer
87035+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
87036+ */
87037+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): BI.EventResponse;
87038+
87039+ /**
87040+ * Decodes an EventResponse message from the specified reader or buffer, length delimited.
87041+ * @param reader Reader or buffer to decode from
87042+ * @returns EventResponse
87043+ * @throws {Error} If the payload is not a reader or valid buffer
87044+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
87045+ */
87046+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): BI.EventResponse;
87047+
87048+ /**
87049+ * Verifies an EventResponse message.
87050+ * @param message Plain object to verify
87051+ * @returns `null` if valid, otherwise the reason why it is not
87052+ */
87053+ public static verify(message: { [k: string]: any }): (string|null);
87054+
87055+ /**
87056+ * Creates an EventResponse message from a plain object. Also converts values to their respective internal types.
87057+ * @param object Plain object
87058+ * @returns EventResponse
87059+ */
87060+ public static fromObject(object: { [k: string]: any }): BI.EventResponse;
87061+
87062+ /**
87063+ * Creates a plain object from an EventResponse message. Also converts values to other types if specified.
87064+ * @param message EventResponse
87065+ * @param [options] Conversion options
87066+ * @returns Plain object
87067+ */
87068+ public static toObject(message: BI.EventResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
87069+
87070+ /**
87071+ * Converts this EventResponse to JSON.
87072+ * @returns JSON object
87073+ */
87074+ public toJSON(): { [k: string]: any };
87075+
87076+ /**
87077+ * Gets the default type url for EventResponse
87078+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
87079+ * @returns The default type url
87080+ */
87081+ public static getTypeUrl(typeUrlPrefix?: string): string;
87082+ }
87083+
87084+ /** Properties of an EventsResponse. */
87085+ interface IEventsResponse {
87086+
87087+ /** EventsResponse response */
87088+ response?: (BI.IEventResponse[]|null);
87089+ }
87090+
87091+ /** Represents an EventsResponse. */
87092+ class EventsResponse implements IEventsResponse {
87093+
87094+ /**
87095+ * Constructs a new EventsResponse.
87096+ * @param [properties] Properties to set
87097+ */
87098+ constructor(properties?: BI.IEventsResponse);
87099+
87100+ /** EventsResponse response. */
87101+ public response: BI.IEventResponse[];
87102+
87103+ /**
87104+ * Creates a new EventsResponse instance using the specified properties.
87105+ * @param [properties] Properties to set
87106+ * @returns EventsResponse instance
87107+ */
87108+ public static create(properties?: BI.IEventsResponse): BI.EventsResponse;
87109+
87110+ /**
87111+ * Encodes the specified EventsResponse message. Does not implicitly {@link BI.EventsResponse.verify|verify} messages.
87112+ * @param message EventsResponse message or plain object to encode
87113+ * @param [writer] Writer to encode to
87114+ * @returns Writer
87115+ */
87116+ public static encode(message: BI.IEventsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
87117+
87118+ /**
87119+ * Encodes the specified EventsResponse message, length delimited. Does not implicitly {@link BI.EventsResponse.verify|verify} messages.
87120+ * @param message EventsResponse message or plain object to encode
87121+ * @param [writer] Writer to encode to
87122+ * @returns Writer
87123+ */
87124+ public static encodeDelimited(message: BI.IEventsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
87125+
87126+ /**
87127+ * Decodes an EventsResponse message from the specified reader or buffer.
87128+ * @param reader Reader or buffer to decode from
87129+ * @param [length] Message length if known beforehand
87130+ * @returns EventsResponse
87131+ * @throws {Error} If the payload is not a reader or valid buffer
87132+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
87133+ */
87134+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): BI.EventsResponse;
87135+
87136+ /**
87137+ * Decodes an EventsResponse message from the specified reader or buffer, length delimited.
87138+ * @param reader Reader or buffer to decode from
87139+ * @returns EventsResponse
87140+ * @throws {Error} If the payload is not a reader or valid buffer
87141+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
87142+ */
87143+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): BI.EventsResponse;
87144+
87145+ /**
87146+ * Verifies an EventsResponse message.
87147+ * @param message Plain object to verify
87148+ * @returns `null` if valid, otherwise the reason why it is not
87149+ */
87150+ public static verify(message: { [k: string]: any }): (string|null);
87151+
87152+ /**
87153+ * Creates an EventsResponse message from a plain object. Also converts values to their respective internal types.
87154+ * @param object Plain object
87155+ * @returns EventsResponse
87156+ */
87157+ public static fromObject(object: { [k: string]: any }): BI.EventsResponse;
87158+
87159+ /**
87160+ * Creates a plain object from an EventsResponse message. Also converts values to other types if specified.
87161+ * @param message EventsResponse
87162+ * @param [options] Conversion options
87163+ * @returns Plain object
87164+ */
87165+ public static toObject(message: BI.EventsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
87166+
87167+ /**
87168+ * Converts this EventsResponse to JSON.
87169+ * @returns JSON object
87170+ */
87171+ public toJSON(): { [k: string]: any };
87172+
87173+ /**
87174+ * Gets the default type url for EventsResponse
87175+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
87176+ * @returns The default type url
87177+ */
87178+ public static getTypeUrl(typeUrlPrefix?: string): string;
87179+ }
87180+
8698187181 /** Properties of a CustomerCaptureRequest. */
8698287182 interface ICustomerCaptureRequest {
8698387183
0 commit comments