A view for the collection of PACS Series resulting from a query search.
curl -X GET \
-H "Authorization: Basic [[basicHash]]" \
-H "Authorization: [[apiKey]]" \
\
-H "Accept: application/json" \
"http://localhost/api/v1/pacs/series/search/?AccessionNumber=accessionNumber_example&PatientAge=56&PatientBirthDate=2013-10-20&PatientID=patientID_example&PatientName=patientName_example&PatientSex=patientSex_example&ProtocolName=protocolName_example&SeriesDescription=seriesDescription_example&SeriesInstanceUID=seriesInstanceUID_example&StudyDate=2013-10-20&StudyDescription=studyDescription_example&StudyInstanceUID=studyInstanceUID_example&id=56&limit=56&max_PatientAge=56&max_creation_date=2013-10-20T19:20:30+01:00&min_PatientAge=56&min_creation_date=2013-10-20T19:20:30+01:00&offset=56&pacs_identifier=pacsIdentifier_example"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.PacsApi;
import java.io.File;
import java.util.*;
public class PacsApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basicAuth
HttpBasicAuth basicAuth = (HttpBasicAuth) defaultClient.getAuthentication("basicAuth");
basicAuth.setUsername("YOUR USERNAME");
basicAuth.setPassword("YOUR PASSWORD");
// Configure API key authorization: tokenAuth
ApiKeyAuth tokenAuth = (ApiKeyAuth) defaultClient.getAuthentication("tokenAuth");
tokenAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//tokenAuth.setApiKeyPrefix("Token");
// Configure API key authorization: cookieAuth
ApiKeyAuth cookieAuth = (ApiKeyAuth) defaultClient.getAuthentication("cookieAuth");
cookieAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//cookieAuth.setApiKeyPrefix("Token");
// Create an instance of the API class
PacsApi apiInstance = new PacsApi();
String accessionNumber = accessionNumber_example; // String |
Integer patientAge = 56; // Integer |
date patientBirthDate = 2013-10-20; // date |
String patientID = patientID_example; // String |
String patientName = patientName_example; // String |
String patientSex = patientSex_example; // String | * `M` - Male
* `F` - Female
* `O` - Other
String protocolName = protocolName_example; // String |
String seriesDescription = seriesDescription_example; // String |
String seriesInstanceUID = seriesInstanceUID_example; // String |
date studyDate = 2013-10-20; // date |
String studyDescription = studyDescription_example; // String |
String studyInstanceUID = studyInstanceUID_example; // String |
Integer id = 56; // Integer |
Integer limit = 56; // Integer | Number of results to return per page.
Integer maxPatientAge = 56; // Integer |
Date maxCreationDate = 2013-10-20T19:20:30+01:00; // Date |
Integer minPatientAge = 56; // Integer |
Date minCreationDate = 2013-10-20T19:20:30+01:00; // Date |
Integer offset = 56; // Integer | The initial index from which to return the results.
String pacsIdentifier = pacsIdentifier_example; // String |
try {
PaginatedPACSSeriesList result = apiInstance.pacsSeriesSearchList(accessionNumber, patientAge, patientBirthDate, patientID, patientName, patientSex, protocolName, seriesDescription, seriesInstanceUID, studyDate, studyDescription, studyInstanceUID, id, limit, maxPatientAge, maxCreationDate, minPatientAge, minCreationDate, offset, pacsIdentifier);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PacsApi#pacsSeriesSearchList");
e.printStackTrace();
}
}
}
import 'package:openapi/api.dart';
final api_instance = DefaultApi();
final String accessionNumber = new String(); // String |
final Integer patientAge = new Integer(); // Integer |
final date patientBirthDate = new date(); // date |
final String patientID = new String(); // String |
final String patientName = new String(); // String |
final String patientSex = new String(); // String | * `M` - Male
* `F` - Female
* `O` - Other
final String protocolName = new String(); // String |
final String seriesDescription = new String(); // String |
final String seriesInstanceUID = new String(); // String |
final date studyDate = new date(); // date |
final String studyDescription = new String(); // String |
final String studyInstanceUID = new String(); // String |
final Integer id = new Integer(); // Integer |
final Integer limit = new Integer(); // Integer | Number of results to return per page.
final Integer maxPatientAge = new Integer(); // Integer |
final Date maxCreationDate = new Date(); // Date |
final Integer minPatientAge = new Integer(); // Integer |
final Date minCreationDate = new Date(); // Date |
final Integer offset = new Integer(); // Integer | The initial index from which to return the results.
final String pacsIdentifier = new String(); // String |
try {
final result = await api_instance.pacsSeriesSearchList(accessionNumber, patientAge, patientBirthDate, patientID, patientName, patientSex, protocolName, seriesDescription, seriesInstanceUID, studyDate, studyDescription, studyInstanceUID, id, limit, maxPatientAge, maxCreationDate, minPatientAge, minCreationDate, offset, pacsIdentifier);
print(result);
} catch (e) {
print('Exception when calling DefaultApi->pacsSeriesSearchList: $e\n');
}
import org.openapitools.client.api.PacsApi;
public class PacsApiExample {
public static void main(String[] args) {
PacsApi apiInstance = new PacsApi();
String accessionNumber = accessionNumber_example; // String |
Integer patientAge = 56; // Integer |
date patientBirthDate = 2013-10-20; // date |
String patientID = patientID_example; // String |
String patientName = patientName_example; // String |
String patientSex = patientSex_example; // String | * `M` - Male
* `F` - Female
* `O` - Other
String protocolName = protocolName_example; // String |
String seriesDescription = seriesDescription_example; // String |
String seriesInstanceUID = seriesInstanceUID_example; // String |
date studyDate = 2013-10-20; // date |
String studyDescription = studyDescription_example; // String |
String studyInstanceUID = studyInstanceUID_example; // String |
Integer id = 56; // Integer |
Integer limit = 56; // Integer | Number of results to return per page.
Integer maxPatientAge = 56; // Integer |
Date maxCreationDate = 2013-10-20T19:20:30+01:00; // Date |
Integer minPatientAge = 56; // Integer |
Date minCreationDate = 2013-10-20T19:20:30+01:00; // Date |
Integer offset = 56; // Integer | The initial index from which to return the results.
String pacsIdentifier = pacsIdentifier_example; // String |
try {
PaginatedPACSSeriesList result = apiInstance.pacsSeriesSearchList(accessionNumber, patientAge, patientBirthDate, patientID, patientName, patientSex, protocolName, seriesDescription, seriesInstanceUID, studyDate, studyDescription, studyInstanceUID, id, limit, maxPatientAge, maxCreationDate, minPatientAge, minCreationDate, offset, pacsIdentifier);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PacsApi#pacsSeriesSearchList");
e.printStackTrace();
}
}
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure HTTP basic authorization (authentication scheme: basicAuth)
[apiConfig setUsername:@"YOUR_USERNAME"];
[apiConfig setPassword:@"YOUR_PASSWORD"];
// Configure API key authorization: (authentication scheme: tokenAuth)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"Authorization"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"Authorization"];
// Configure API key authorization: (authentication scheme: cookieAuth)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"sessionid"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"sessionid"];
// Create an instance of the API class
PacsApi *apiInstance = [[PacsApi alloc] init];
String *accessionNumber = accessionNumber_example; // (optional) (default to null)
Integer *patientAge = 56; // (optional) (default to null)
date *patientBirthDate = 2013-10-20; // (optional) (default to null)
String *patientID = patientID_example; // (optional) (default to null)
String *patientName = patientName_example; // (optional) (default to null)
String *patientSex = patientSex_example; // * `M` - Male
* `F` - Female
* `O` - Other (optional) (default to null)
String *protocolName = protocolName_example; // (optional) (default to null)
String *seriesDescription = seriesDescription_example; // (optional) (default to null)
String *seriesInstanceUID = seriesInstanceUID_example; // (optional) (default to null)
date *studyDate = 2013-10-20; // (optional) (default to null)
String *studyDescription = studyDescription_example; // (optional) (default to null)
String *studyInstanceUID = studyInstanceUID_example; // (optional) (default to null)
Integer *id = 56; // (optional) (default to null)
Integer *limit = 56; // Number of results to return per page. (optional) (default to null)
Integer *maxPatientAge = 56; // (optional) (default to null)
Date *maxCreationDate = 2013-10-20T19:20:30+01:00; // (optional) (default to null)
Integer *minPatientAge = 56; // (optional) (default to null)
Date *minCreationDate = 2013-10-20T19:20:30+01:00; // (optional) (default to null)
Integer *offset = 56; // The initial index from which to return the results. (optional) (default to null)
String *pacsIdentifier = pacsIdentifier_example; // (optional) (default to null)
[apiInstance pacsSeriesSearchListWith:accessionNumber
patientAge:patientAge
patientBirthDate:patientBirthDate
patientID:patientID
patientName:patientName
patientSex:patientSex
protocolName:protocolName
seriesDescription:seriesDescription
seriesInstanceUID:seriesInstanceUID
studyDate:studyDate
studyDescription:studyDescription
studyInstanceUID:studyInstanceUID
id:id
limit:limit
maxPatientAge:maxPatientAge
maxCreationDate:maxCreationDate
minPatientAge:minPatientAge
minCreationDate:minCreationDate
offset:offset
pacsIdentifier:pacsIdentifier
completionHandler: ^(PaginatedPACSSeriesList output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var ChRisResearchIntegrationSystemUltronBackEndCubeApi = require('ch_ris_research_integration_system_ultron_back_end__cube_api');
var defaultClient = ChRisResearchIntegrationSystemUltronBackEndCubeApi.ApiClient.instance;
// Configure HTTP basic authorization: basicAuth
var basicAuth = defaultClient.authentications['basicAuth'];
basicAuth.username = 'YOUR USERNAME';
basicAuth.password = 'YOUR PASSWORD';
// Configure API key authorization: tokenAuth
var tokenAuth = defaultClient.authentications['tokenAuth'];
tokenAuth.apiKey = "YOUR API KEY";
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//tokenAuth.apiKeyPrefix['Authorization'] = "Token";
// Configure API key authorization: cookieAuth
var cookieAuth = defaultClient.authentications['cookieAuth'];
cookieAuth.apiKey = "YOUR API KEY";
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//cookieAuth.apiKeyPrefix['sessionid'] = "Token";
// Create an instance of the API class
var api = new ChRisResearchIntegrationSystemUltronBackEndCubeApi.PacsApi()
var opts = {
'accessionNumber': accessionNumber_example, // {String}
'patientAge': 56, // {Integer}
'patientBirthDate': 2013-10-20, // {date}
'patientID': patientID_example, // {String}
'patientName': patientName_example, // {String}
'patientSex': patientSex_example, // {String} * `M` - Male
* `F` - Female
* `O` - Other
'protocolName': protocolName_example, // {String}
'seriesDescription': seriesDescription_example, // {String}
'seriesInstanceUID': seriesInstanceUID_example, // {String}
'studyDate': 2013-10-20, // {date}
'studyDescription': studyDescription_example, // {String}
'studyInstanceUID': studyInstanceUID_example, // {String}
'id': 56, // {Integer}
'limit': 56, // {Integer} Number of results to return per page.
'maxPatientAge': 56, // {Integer}
'maxCreationDate': 2013-10-20T19:20:30+01:00, // {Date}
'minPatientAge': 56, // {Integer}
'minCreationDate': 2013-10-20T19:20:30+01:00, // {Date}
'offset': 56, // {Integer} The initial index from which to return the results.
'pacsIdentifier': pacsIdentifier_example // {String}
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.pacsSeriesSearchList(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;
namespace Example
{
public class pacsSeriesSearchListExample
{
public void main()
{
// Configure HTTP basic authorization: basicAuth
Configuration.Default.Username = "YOUR_USERNAME";
Configuration.Default.Password = "YOUR_PASSWORD";
// Configure API key authorization: tokenAuth
Configuration.Default.ApiKey.Add("Authorization", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("Authorization", "Bearer");
// Configure API key authorization: cookieAuth
Configuration.Default.ApiKey.Add("sessionid", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("sessionid", "Bearer");
// Create an instance of the API class
var apiInstance = new PacsApi();
var accessionNumber = accessionNumber_example; // String | (optional) (default to null)
var patientAge = 56; // Integer | (optional) (default to null)
var patientBirthDate = 2013-10-20; // date | (optional) (default to null)
var patientID = patientID_example; // String | (optional) (default to null)
var patientName = patientName_example; // String | (optional) (default to null)
var patientSex = patientSex_example; // String | * `M` - Male
* `F` - Female
* `O` - Other (optional) (default to null)
var protocolName = protocolName_example; // String | (optional) (default to null)
var seriesDescription = seriesDescription_example; // String | (optional) (default to null)
var seriesInstanceUID = seriesInstanceUID_example; // String | (optional) (default to null)
var studyDate = 2013-10-20; // date | (optional) (default to null)
var studyDescription = studyDescription_example; // String | (optional) (default to null)
var studyInstanceUID = studyInstanceUID_example; // String | (optional) (default to null)
var id = 56; // Integer | (optional) (default to null)
var limit = 56; // Integer | Number of results to return per page. (optional) (default to null)
var maxPatientAge = 56; // Integer | (optional) (default to null)
var maxCreationDate = 2013-10-20T19:20:30+01:00; // Date | (optional) (default to null)
var minPatientAge = 56; // Integer | (optional) (default to null)
var minCreationDate = 2013-10-20T19:20:30+01:00; // Date | (optional) (default to null)
var offset = 56; // Integer | The initial index from which to return the results. (optional) (default to null)
var pacsIdentifier = pacsIdentifier_example; // String | (optional) (default to null)
try {
PaginatedPACSSeriesList result = apiInstance.pacsSeriesSearchList(accessionNumber, patientAge, patientBirthDate, patientID, patientName, patientSex, protocolName, seriesDescription, seriesInstanceUID, studyDate, studyDescription, studyInstanceUID, id, limit, maxPatientAge, maxCreationDate, minPatientAge, minCreationDate, offset, pacsIdentifier);
Debug.WriteLine(result);
} catch (Exception e) {
Debug.Print("Exception when calling PacsApi.pacsSeriesSearchList: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure HTTP basic authorization: basicAuth
OpenAPITools\Client\Configuration::getDefaultConfiguration()->setUsername('YOUR_USERNAME');
OpenAPITools\Client\Configuration::getDefaultConfiguration()->setPassword('YOUR_PASSWORD');
// Configure API key authorization: tokenAuth
OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
// Configure API key authorization: cookieAuth
OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKey('sessionid', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('sessionid', 'Bearer');
// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\PacsApi();
$accessionNumber = accessionNumber_example; // String |
$patientAge = 56; // Integer |
$patientBirthDate = 2013-10-20; // date |
$patientID = patientID_example; // String |
$patientName = patientName_example; // String |
$patientSex = patientSex_example; // String | * `M` - Male
* `F` - Female
* `O` - Other
$protocolName = protocolName_example; // String |
$seriesDescription = seriesDescription_example; // String |
$seriesInstanceUID = seriesInstanceUID_example; // String |
$studyDate = 2013-10-20; // date |
$studyDescription = studyDescription_example; // String |
$studyInstanceUID = studyInstanceUID_example; // String |
$id = 56; // Integer |
$limit = 56; // Integer | Number of results to return per page.
$maxPatientAge = 56; // Integer |
$maxCreationDate = 2013-10-20T19:20:30+01:00; // Date |
$minPatientAge = 56; // Integer |
$minCreationDate = 2013-10-20T19:20:30+01:00; // Date |
$offset = 56; // Integer | The initial index from which to return the results.
$pacsIdentifier = pacsIdentifier_example; // String |
try {
$result = $api_instance->pacsSeriesSearchList($accessionNumber, $patientAge, $patientBirthDate, $patientID, $patientName, $patientSex, $protocolName, $seriesDescription, $seriesInstanceUID, $studyDate, $studyDescription, $studyInstanceUID, $id, $limit, $maxPatientAge, $maxCreationDate, $minPatientAge, $minCreationDate, $offset, $pacsIdentifier);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PacsApi->pacsSeriesSearchList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::PacsApi;
# Configure HTTP basic authorization: basicAuth
$WWW::OPenAPIClient::Configuration::username = 'YOUR_USERNAME';
$WWW::OPenAPIClient::Configuration::password = 'YOUR_PASSWORD';
# Configure API key authorization: tokenAuth
$WWW::OPenAPIClient::Configuration::api_key->{'Authorization'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::OPenAPIClient::Configuration::api_key_prefix->{'Authorization'} = "Bearer";
# Configure API key authorization: cookieAuth
$WWW::OPenAPIClient::Configuration::api_key->{'sessionid'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::OPenAPIClient::Configuration::api_key_prefix->{'sessionid'} = "Bearer";
# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::PacsApi->new();
my $accessionNumber = accessionNumber_example; # String |
my $patientAge = 56; # Integer |
my $patientBirthDate = 2013-10-20; # date |
my $patientID = patientID_example; # String |
my $patientName = patientName_example; # String |
my $patientSex = patientSex_example; # String | * `M` - Male
* `F` - Female
* `O` - Other
my $protocolName = protocolName_example; # String |
my $seriesDescription = seriesDescription_example; # String |
my $seriesInstanceUID = seriesInstanceUID_example; # String |
my $studyDate = 2013-10-20; # date |
my $studyDescription = studyDescription_example; # String |
my $studyInstanceUID = studyInstanceUID_example; # String |
my $id = 56; # Integer |
my $limit = 56; # Integer | Number of results to return per page.
my $maxPatientAge = 56; # Integer |
my $maxCreationDate = 2013-10-20T19:20:30+01:00; # Date |
my $minPatientAge = 56; # Integer |
my $minCreationDate = 2013-10-20T19:20:30+01:00; # Date |
my $offset = 56; # Integer | The initial index from which to return the results.
my $pacsIdentifier = pacsIdentifier_example; # String |
eval {
my $result = $api_instance->pacsSeriesSearchList(accessionNumber => $accessionNumber, patientAge => $patientAge, patientBirthDate => $patientBirthDate, patientID => $patientID, patientName => $patientName, patientSex => $patientSex, protocolName => $protocolName, seriesDescription => $seriesDescription, seriesInstanceUID => $seriesInstanceUID, studyDate => $studyDate, studyDescription => $studyDescription, studyInstanceUID => $studyInstanceUID, id => $id, limit => $limit, maxPatientAge => $maxPatientAge, maxCreationDate => $maxCreationDate, minPatientAge => $minPatientAge, minCreationDate => $minCreationDate, offset => $offset, pacsIdentifier => $pacsIdentifier);
print Dumper($result);
};
if ($@) {
warn "Exception when calling PacsApi->pacsSeriesSearchList: $@\n";
}
from __future__ import print_statement
import time
import chris_oag
from chris_oag.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
chris_oag.configuration.username = 'YOUR_USERNAME'
chris_oag.configuration.password = 'YOUR_PASSWORD'
# Configure API key authorization: tokenAuth
chris_oag.configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# chris_oag.configuration.api_key_prefix['Authorization'] = 'Bearer'
# Configure API key authorization: cookieAuth
chris_oag.configuration.api_key['sessionid'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# chris_oag.configuration.api_key_prefix['sessionid'] = 'Bearer'
# Create an instance of the API class
api_instance = chris_oag.PacsApi()
accessionNumber = accessionNumber_example # String | (optional) (default to null)
patientAge = 56 # Integer | (optional) (default to null)
patientBirthDate = 2013-10-20 # date | (optional) (default to null)
patientID = patientID_example # String | (optional) (default to null)
patientName = patientName_example # String | (optional) (default to null)
patientSex = patientSex_example # String | * `M` - Male
* `F` - Female
* `O` - Other (optional) (default to null)
protocolName = protocolName_example # String | (optional) (default to null)
seriesDescription = seriesDescription_example # String | (optional) (default to null)
seriesInstanceUID = seriesInstanceUID_example # String | (optional) (default to null)
studyDate = 2013-10-20 # date | (optional) (default to null)
studyDescription = studyDescription_example # String | (optional) (default to null)
studyInstanceUID = studyInstanceUID_example # String | (optional) (default to null)
id = 56 # Integer | (optional) (default to null)
limit = 56 # Integer | Number of results to return per page. (optional) (default to null)
maxPatientAge = 56 # Integer | (optional) (default to null)
maxCreationDate = 2013-10-20T19:20:30+01:00 # Date | (optional) (default to null)
minPatientAge = 56 # Integer | (optional) (default to null)
minCreationDate = 2013-10-20T19:20:30+01:00 # Date | (optional) (default to null)
offset = 56 # Integer | The initial index from which to return the results. (optional) (default to null)
pacsIdentifier = pacsIdentifier_example # String | (optional) (default to null)
try:
api_response = api_instance.pacs_series_search_list(accessionNumber=accessionNumber, patientAge=patientAge, patientBirthDate=patientBirthDate, patientID=patientID, patientName=patientName, patientSex=patientSex, protocolName=protocolName, seriesDescription=seriesDescription, seriesInstanceUID=seriesInstanceUID, studyDate=studyDate, studyDescription=studyDescription, studyInstanceUID=studyInstanceUID, id=id, limit=limit, maxPatientAge=maxPatientAge, maxCreationDate=maxCreationDate, minPatientAge=minPatientAge, minCreationDate=minCreationDate, offset=offset, pacsIdentifier=pacsIdentifier)
pprint(api_response)
except ApiException as e:
print("Exception when calling PacsApi->pacsSeriesSearchList: %s\n" % e)
extern crate PacsApi;
pub fn main() {
let accessionNumber = accessionNumber_example; // String
let patientAge = 56; // Integer
let patientBirthDate = 2013-10-20; // date
let patientID = patientID_example; // String
let patientName = patientName_example; // String
let patientSex = patientSex_example; // String
let protocolName = protocolName_example; // String
let seriesDescription = seriesDescription_example; // String
let seriesInstanceUID = seriesInstanceUID_example; // String
let studyDate = 2013-10-20; // date
let studyDescription = studyDescription_example; // String
let studyInstanceUID = studyInstanceUID_example; // String
let id = 56; // Integer
let limit = 56; // Integer
let maxPatientAge = 56; // Integer
let maxCreationDate = 2013-10-20T19:20:30+01:00; // Date
let minPatientAge = 56; // Integer
let minCreationDate = 2013-10-20T19:20:30+01:00; // Date
let offset = 56; // Integer
let pacsIdentifier = pacsIdentifier_example; // String
let mut context = PacsApi::Context::default();
let result = client.pacsSeriesSearchList(accessionNumber, patientAge, patientBirthDate, patientID, patientName, patientSex, protocolName, seriesDescription, seriesInstanceUID, studyDate, studyDescription, studyInstanceUID, id, limit, maxPatientAge, maxCreationDate, minPatientAge, minCreationDate, offset, pacsIdentifier, &context).wait();
println!("{:?}", result);
}