mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-04 15:24:07 +01:00
22 lines
323 B
PHP
22 lines
323 B
PHP
<?php
|
|
/**
|
|
* Datatype for calculation output
|
|
*/
|
|
class SoapPovCalculationOutput {
|
|
|
|
/**
|
|
* @var integer calculation ID
|
|
* @example 187
|
|
* @soap
|
|
*/
|
|
public $calculation_id;
|
|
|
|
/**
|
|
* @var SoapPovCalculationResult[] Caluclation result dataset {nillable = 0, minOccurs = 1, maxOccurs = 1}
|
|
* @soap
|
|
*/
|
|
public $results;
|
|
|
|
|
|
|
|
} |