mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-04 07:14:06 +01:00
22 lines
275 B
PHP
22 lines
275 B
PHP
<?php
|
|
/**
|
|
* Datatype for calculation output.
|
|
*/
|
|
class SoapPovCalculationOutput {
|
|
|
|
/**
|
|
* @var integer calculation ID
|
|
* @example 187
|
|
* @soap
|
|
*/
|
|
public $calculation_id;
|
|
|
|
/**
|
|
* @var SoapPovCalculationResult[] Calculation result dataset
|
|
* @soap
|
|
*/
|
|
public $results;
|
|
|
|
|
|
|
|
} |