CreateSecurityConfigurationOutput.fromJson constructor

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

Implementation

factory CreateSecurityConfigurationOutput.fromJson(
    Map<String, dynamic> json) {
  return CreateSecurityConfigurationOutput(
    creationDateTime:
        nonNullableTimeStampFromJson(json['CreationDateTime'] as Object),
    name: json['Name'] as String,
  );
}