Id property

ServiceId? get Id
Gets or sets the Id of the service object the change applies to.

Implementation

ServiceId? get Id =>
    this.ServiceObject != null ? this.ServiceObject!.GetId() : this.id;
set Id (ServiceId? value)

Implementation

set Id(ServiceId? value) {
  this.id = value;
}