CreateUserHierarchyGroupResponse.fromJson constructor

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

Implementation

factory CreateUserHierarchyGroupResponse.fromJson(Map<String, dynamic> json) {
  return CreateUserHierarchyGroupResponse(
    hierarchyGroupArn: json['HierarchyGroupArn'] as String?,
    hierarchyGroupId: json['HierarchyGroupId'] as String?,
  );
}