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