PhalconRest\Export\Postman\Request::__construct PHP Method

__construct() public method

public __construct ( $collectionId, $id, $name, $description, $url, $method, $headers, $data, $dataMode )
    public function __construct($collectionId, $id, $name, $description, $url, $method, $headers, $data, $dataMode)
    {
        $this->collectionId = $collectionId;
        $this->id = $id;
        $this->name = $name;
        $this->description = $description;
        $this->url = $url;
        $this->method = $method;
        $this->headers = $headers;
        $this->data = $data;
        $this->dataMode = $dataMode;
    }