CreateSecurityConfigurationResponse.fromJson constructor

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

Implementation

factory CreateSecurityConfigurationResponse.fromJson(
    Map<String, dynamic> json) {
  return CreateSecurityConfigurationResponse(
    createdTimestamp: timeStampFromJson(json['CreatedTimestamp']),
    name: json['Name'] as String?,
  );
}