Id property

ServiceId? 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;
void Id=(ServiceId? value)

Implementation

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