copyWithWrapped method
WebApiModulesSettingsSpaceSpace
copyWithWrapped({
- Wrapped<
String?> ? spaceId, - Wrapped<
String?> ? buildingId, - Wrapped<
String?> ? building, - Wrapped<
String?> ? floorId, - Wrapped<
String?> ? floor, - Wrapped<
String?> ? space, - Wrapped<
int?> ? orderBy, - Wrapped<
String?> ? buildingSpace, - Wrapped<
String?> ? buildingFloorSpace, - Wrapped<
double?> ? squareFeet, - Wrapped<
String?> ? spaceFromDate, - Wrapped<
String?> ? spaceToDate, - Wrapped<
bool?> ? commonSquareFeet, - Wrapped<
String?> ? primaryDimensionId, - Wrapped<
int?> ? widthFt, - Wrapped<
int?> ? heightFt, - Wrapped<
int?> ? lengthFt, - Wrapped<
int?> ? occupancy, - Wrapped<
bool?> ? inactive, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
WebApiModulesSettingsSpaceSpace copyWithWrapped(
{Wrapped<String?>? spaceId,
Wrapped<String?>? buildingId,
Wrapped<String?>? building,
Wrapped<String?>? floorId,
Wrapped<String?>? floor,
Wrapped<String?>? space,
Wrapped<int?>? orderBy,
Wrapped<String?>? buildingSpace,
Wrapped<String?>? buildingFloorSpace,
Wrapped<double?>? squareFeet,
Wrapped<String?>? spaceFromDate,
Wrapped<String?>? spaceToDate,
Wrapped<bool?>? commonSquareFeet,
Wrapped<String?>? primaryDimensionId,
Wrapped<int?>? widthFt,
Wrapped<int?>? heightFt,
Wrapped<int?>? lengthFt,
Wrapped<int?>? occupancy,
Wrapped<bool?>? inactive,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
return WebApiModulesSettingsSpaceSpace(
spaceId: (spaceId != null ? spaceId.value : this.spaceId),
buildingId: (buildingId != null ? buildingId.value : this.buildingId),
building: (building != null ? building.value : this.building),
floorId: (floorId != null ? floorId.value : this.floorId),
floor: (floor != null ? floor.value : this.floor),
space: (space != null ? space.value : this.space),
orderBy: (orderBy != null ? orderBy.value : this.orderBy),
buildingSpace:
(buildingSpace != null ? buildingSpace.value : this.buildingSpace),
buildingFloorSpace: (buildingFloorSpace != null
? buildingFloorSpace.value
: this.buildingFloorSpace),
squareFeet: (squareFeet != null ? squareFeet.value : this.squareFeet),
spaceFromDate:
(spaceFromDate != null ? spaceFromDate.value : this.spaceFromDate),
spaceToDate:
(spaceToDate != null ? spaceToDate.value : this.spaceToDate),
commonSquareFeet: (commonSquareFeet != null
? commonSquareFeet.value
: this.commonSquareFeet),
primaryDimensionId: (primaryDimensionId != null
? primaryDimensionId.value
: this.primaryDimensionId),
widthFt: (widthFt != null ? widthFt.value : this.widthFt),
heightFt: (heightFt != null ? heightFt.value : this.heightFt),
lengthFt: (lengthFt != null ? lengthFt.value : this.lengthFt),
occupancy: (occupancy != null ? occupancy.value : this.occupancy),
inactive: (inactive != null ? inactive.value : this.inactive),
auditNote: (auditNote != null ? auditNote.value : this.auditNote),
recordTitle:
(recordTitle != null ? recordTitle.value : this.recordTitle),
fields: (fields != null ? fields.value : this.fields),
custom: (custom != null ? custom.value : this.custom),
defaultFieldAttributes: (defaultFieldAttributes != null
? defaultFieldAttributes.value
: this.defaultFieldAttributes),
translation:
(translation != null ? translation.value : this.translation));
}