toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (accessPoints != null) 'accessPoints': accessPoints!,
  if (capacityGib != null) 'capacityGib': capacityGib!,
  if (createTime != null) 'createTime': createTime!,
  if (daosVersion != null) 'daosVersion': daosVersion!,
  if (deploymentType != null) 'deploymentType': deploymentType!,
  if (description != null) 'description': description!,
  if (directoryStripeLevel != null)
    'directoryStripeLevel': directoryStripeLevel!,
  if (effectiveReservedIpRange != null)
    'effectiveReservedIpRange': effectiveReservedIpRange!,
  if (fileStripeLevel != null) 'fileStripeLevel': fileStripeLevel!,
  if (labels != null) 'labels': labels!,
  if (name != null) 'name': name!,
  if (network != null) 'network': network!,
  if (reservedIpRange != null) 'reservedIpRange': reservedIpRange!,
  if (state != null) 'state': state!,
  if (updateTime != null) 'updateTime': updateTime!,
};