fromJson static method
Returns a new AuthorizationAllOfLinks instance and imports
Implementation
// ignore: prefer_constructors_over_static_methods
static AuthorizationAllOfLinks fromJson(dynamic value) {
final json = value.cast<String, dynamic>();
return AuthorizationAllOfLinks(
self: mapValueOfType<String>(json, r'self'),
user: mapValueOfType<String>(json, r'user'),
);
}