Zitadel.V1.ObjectDetails (zitadel_api v1.0.0-rc.4) View Source

Link to this section Summary

Types

change_date is the timestamp when the object was changed

creation_date is the timestamp where the first operation on the object was made

resource_owner is the organisation an object belongs to

sequence represents the order of events. It's always upcounting

t()

Link to this section Types

Specs

change_date() :: Google.Protobuf.Timestamp.t() | nil

change_date is the timestamp when the object was changed

on read: the timestamp of the last event reduced by the projection

on manipulation: the

Specs

creation_date() :: Google.Protobuf.Timestamp.t() | nil

creation_date is the timestamp where the first operation on the object was made

on read: the timestamp of the first event of the object

on create: the timestamp of the event(s) added by the manipulation

Specs

resource_owner() :: String.t()

resource_owner is the organisation an object belongs to

Specs

sequence() :: non_neg_integer()

sequence represents the order of events. It's always upcounting

on read: the sequence of the last event reduced by the projection

on manipulation: the timestamp of the event(s) added by the manipulation

Specs

t() :: %Zitadel.V1.ObjectDetails{
  change_date: change_date(),
  creation_date: creation_date(),
  resource_owner: resource_owner(),
  sequence: sequence()
}

Link to this section Functions