LinkEventMetadata.fromJson constructor

LinkEventMetadata.fromJson(
  1. dynamic json
)

Implementation

factory LinkEventMetadata.fromJson(dynamic json) {
  return LinkEventMetadata(
    viewName: json["viewName"],
    exitStatus: json["exitStatus"],
    mfaType: json["mfaType"],
    requestId: json["requestId"],
    timestamp: json["timestamp"],
    linkSessionId: json["linkSessionId"],
    institutionName: json["institutionName"],
    institutionId: json["institutionId"],
    institutionSearchQuery: json["institutionSearchQuery"],
    errorType: json["errorType"],
    errorCode: json["errorCode"],
    errorMessage: json["errorMessage"],
    selection: json["selection"],
    routingNumber: json["routingNumber"],
    matchReason: json["matchReason"],
    accountNumberMask: json["accountNumberMask"],
  );
}