| 1 | <?php |
||
| 11 | class GetSettingsResponse extends Model |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var Settings|null |
||
| 15 | */ |
||
| 16 | protected $settings = null; |
||
| 17 | |||
| 18 | protected $mappingClasses = [ |
||
| 19 | 'settings' => 'Yandex\Market\Partner\Models\Settings' |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return null|\Yandex\Market\Partner\Models\Settings |
||
| 24 | */ |
||
| 25 | 1 | public function getSettings() |
|
| 29 | } |
||
| 30 |