DeviceBoundSessionUrlRule.fromJson constructor
Implementation
factory DeviceBoundSessionUrlRule.fromJson(Map<String, dynamic> json) {
return DeviceBoundSessionUrlRule(
ruleType: DeviceBoundSessionUrlRuleRuleType.fromJson(
json['ruleType'] as String,
),
hostPattern: json['hostPattern'] as String,
pathPrefix: json['pathPrefix'] as String,
);
}