LDAPSSettingInfo.fromJson constructor

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

Implementation

factory LDAPSSettingInfo.fromJson(Map<String, dynamic> json) {
  return LDAPSSettingInfo(
    lDAPSStatus: (json['LDAPSStatus'] as String?)?.toLDAPSStatus(),
    lDAPSStatusReason: json['LDAPSStatusReason'] as String?,
    lastUpdatedDateTime: timeStampFromJson(json['LastUpdatedDateTime']),
  );
}