Id = $data->id; $obj->Name = $data->name; $obj->Carrier = $data->carrier ?? null; $obj->MinWeight = $data->properties->min_weight; $obj->MaxWeight = $data->properties->max_weight; $obj->MaxLength = $data->properties->max_dimensions->length; $obj->MaxWidth = $data->properties->max_dimensions->width; $obj->MaxHeight = $data->properties->max_dimensions->height; $obj->Unit = $data->properties->max_dimensions->unit; return $obj; } }