toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (createTime != null) 'createTime': createTime!,
      if (deleteTime != null) 'deleteTime': deleteTime!,
      if (directoryCustomerId != null)
        'directoryCustomerId': directoryCustomerId!,
      if (displayName != null) 'displayName': displayName!,
      if (etag != null) 'etag': etag!,
      if (name != null) 'name': name!,
      if (state != null) 'state': state!,
      if (updateTime != null) 'updateTime': updateTime!,
    };