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