Name property
      
      String?
      get
      Name
      
    
    
Implementation
String? get Name {
  if (this._name == null || this._name!.isEmpty) {
    ServiceObjectSchema.InitializeSchemaPropertyNames();
  }
  return this._name;
}
      
      set
      Name
      (String? value) 
      
    
    
    
Implementation
void set Name(String? value) {
  this._name = value;
}