createGroup() public method

Create a new company property group to gather like company-level data.
See also: http://developers.hubspot.com/docs/methods/companies/create_company_property_group
public createGroup ( array $group ) : Response
$group array Defines the group and any properties within it.
return SevenShores\Hubspot\Http\Response
 /**
  * Creates a new company property group.
  *
  * @return \SevenShores\Hubspot\Http\Response
  */
 private function createCompanyPropertyGroup()
 {
     $group = ["name" => "t" . uniqid(), "displayName" => "A New Custom Group", "displayOrder" => 6];
     $response = $this->companyProperties->createGroup($group);
     return $response;
 }