Phue\Group::__construct PHP Method

__construct() public method

Construct a Phue Group object
public __construct ( integer $id, stdClass $attributes, Client $client )
$id integer Id
$attributes stdClass Group attributes
$client Client Phue client
    public function __construct($id, \stdClass $attributes, Client $client)
    {
        $this->id = (int) $id;
        $this->attributes = $attributes;
        $this->client = $client;
    }