DeviceiSCSIAttributes.fromJson constructor

DeviceiSCSIAttributes.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DeviceiSCSIAttributes.fromJson(Map<String, dynamic> json) {
  return DeviceiSCSIAttributes(
    chapEnabled: json['ChapEnabled'] as bool?,
    networkInterfaceId: json['NetworkInterfaceId'] as String?,
    networkInterfacePort: json['NetworkInterfacePort'] as int?,
    targetARN: json['TargetARN'] as String?,
  );
}