Input$WarehouseInput constructor

Input$WarehouseInput({
  1. String? name,
  2. Input$MediaInput? media,
  3. List<String>? tags,
  4. required String location,
  5. double? totalSurface,
  6. double? nonStorageSurface,
  7. String? externalId,
})

Implementation

factory Input$WarehouseInput({
  String? name,
  Input$MediaInput? media,
  List<String>? tags,
  required String location,
  double? totalSurface,
  double? nonStorageSurface,
  String? externalId,
}) =>
    Input$WarehouseInput._({
      if (name != null) r'name': name,
      if (media != null) r'media': media,
      if (tags != null) r'tags': tags,
      r'location': location,
      if (totalSurface != null) r'totalSurface': totalSurface,
      if (nonStorageSurface != null) r'nonStorageSurface': nonStorageSurface,
      if (externalId != null) r'externalId': externalId,
    });