You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
677 B
PHP
36 lines
677 B
PHP
<?php
|
|
/**
|
|
* Copyright (C) Alibaba Cloud Computing
|
|
* All rights reserved
|
|
*/
|
|
|
|
class Aliyun_Log_Models_OssShipperParquetStorage extends Aliyun_Log_Models_OssShipperStorage{
|
|
private $columns;
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getColumns()
|
|
{
|
|
return $this->columns;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $columns
|
|
*/
|
|
public function setColumns($columns)
|
|
{
|
|
$this->columns = $columns;
|
|
}
|
|
|
|
public function to_json_object(){
|
|
$detail = array(
|
|
'columns' => $this->columns
|
|
);
|
|
return array(
|
|
'detail' => $detail,
|
|
'format' => parent::getFormat()
|
|
);
|
|
}
|
|
}
|