SecurityProfileTargetMapping.fromJson constructor
SecurityProfileTargetMapping.fromJson(
- Map<String, dynamic> json
)
Implementation
factory SecurityProfileTargetMapping.fromJson(Map<String, dynamic> json) {
return SecurityProfileTargetMapping(
securityProfileIdentifier: json['securityProfileIdentifier'] != null
? SecurityProfileIdentifier.fromJson(
json['securityProfileIdentifier'] as Map<String, dynamic>)
: null,
target: json['target'] != null
? SecurityProfileTarget.fromJson(
json['target'] as Map<String, dynamic>)
: null,
);
}