Skip to content

Latest commit

 

History

History
59 lines (33 loc) · 1.39 KB

File metadata and controls

59 lines (33 loc) · 1.39 KB

Swagger\Client\HelperApi

All URIs are relative to https://localhost/

Method HTTP request Description
fileParser POST /api/Helper/FileParser

fileParser

\Swagger\Client\Model\FileParserResult fileParser($file_parser)

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\Api\HelperApi();
$file_parser = new \Swagger\Client\Model\FileParser(); // \Swagger\Client\Model\FileParser | 


try { 
    $result = $api_instance->fileParser($file_parser);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling HelperApi->fileParser: ', $e->getMessage(), "\n";
}
?>

Parameters

Name Type Description Notes
file_parser \Swagger\Client\Model\FileParser [optional]

Return type

\Swagger\Client\Model\FileParserResult

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json, text/json, application/json-patch+json
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]