Instagram\API\Response\Model\Model::__construct PHP Метод

__construct() публичный Метод

Optional array of Properties can be passed in to initialize the Model
public __construct ( array $properties = [] )
$properties array Properties
    public function __construct($properties = array())
    {
        if ($properties != null) {
            foreach ($properties as $key => $value) {
                $this->{$key} = $value;
            }
        }
    }