-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathLicenseHistory.php
More file actions
75 lines (65 loc) · 2.25 KB
/
LicenseHistory.php
File metadata and controls
75 lines (65 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
* Copyright 2017 Adobe Systems Incorporated. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*/
namespace AdobeStock\Api\Request;
use \AdobeStock\Api\Exception\StockApi as StockApiException;
use \AdobeStock\Api\Models\SearchParamLicenseHistory as SearchParamLicenseHistoryModel;
class LicenseHistory extends AbstractRequest
{
/**
* @var SearchParamLicenseHistoryModel search params.
*/
public $search_parameters;
/**
* @var array result column constants
*/
public $result_columns;
/**
* Get SearchParameters array that consists of various search params
* @return SearchParamLicenseHistoryModel|null
*/
public function getSearchParams() : ?SearchParamLicenseHistoryModel
{
return $this->search_parameters;
}
/**
* Sets SearchParameters object that consists of various search params
* @param SearchParamLicenseHistoryModel $search_parameters
* @throws StockApiException
* @return LicenseHistory
*/
public function setSearchParams(SearchParamLicenseHistoryModel $search_parameters = null) : LicenseHistory
{
if ($search_parameters === null) {
throw StockApiException::withMessage('SearchParams array cannot be null');
}
$this->search_parameters = $search_parameters;
return $this;
}
/**
* Get ResultColumns array that you have included for columns
* @return array|null
*/
public function getResultColumns() : ?array
{
return $this->result_columns;
}
/**
* Set ResultColumns array consisting of result column constants
* @param array $result_columns
* @throws StockApiException
* @return LicenseHistory
*/
public function setResultColumns(array $result_columns = null) : LicenseHistory
{
if (empty($result_columns)) {
throw StockApiException::withMessage('ResultColumns array cannot be empty');
}
$this->result_columns = $result_columns;
return $this;
}
}