You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Unique identifier of the Message. Can be used to track which Messages have been processed.
20528
+
*
20529
+
*/
20530
+
readonly id: string
20531
+
/**
20532
+
* Version of a resource. In case of Messages, this is always `1`.
20533
+
*
20534
+
*/
20535
+
readonly version: number
20536
+
/**
20537
+
* Date and time (UTC) the Message was generated.
20538
+
*
20539
+
*/
20540
+
readonly createdAt: string
20541
+
/**
20542
+
* Value of `createdAt`.
20543
+
*
20544
+
*/
20545
+
readonly lastModifiedAt: string
20546
+
/**
20547
+
* IDs and references that last modified the Message.
20548
+
*
20549
+
*
20550
+
*/
20551
+
readonly lastModifiedBy?: LastModifiedBy
20552
+
/**
20553
+
* IDs and references that created the Message.
20554
+
*
20555
+
*
20556
+
*/
20557
+
readonly createdBy?: CreatedBy
20558
+
/**
20559
+
* Message number in relation to other Messages for a given resource. The `sequenceNumber` of the next Message for the resource is the successor of the `sequenceNumber` of the current Message. Meaning, the `sequenceNumber` of the next Message equals the `sequenceNumber` of the current Message + 1.
20560
+
* `sequenceNumber` can be used to ensure that Messages are processed in the correct order for a particular resource.
20561
+
*
20562
+
*
20563
+
*/
20564
+
readonly sequenceNumber: number
20565
+
/**
20566
+
* [Reference](ctp:api:type:Reference) to the resource on which the change or action was performed.
20567
+
*
20568
+
*
20569
+
*/
20570
+
readonly resource: Reference
20571
+
/**
20572
+
* Version of the resource on which the change or action was performed.
20573
+
*
20574
+
*
20575
+
*/
20576
+
readonly resourceVersion: number
20577
+
/**
20578
+
* User-provided identifiers of the resource, such as `key` or `externalId`. Only present if the resource has such identifiers.
0 commit comments