toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'grant_permissions'] = this.grantPermissions;
json[r'revoke_permissions'] = this.revokePermissions;
json[r'user_id'] = this.userId;
return json;
}