'LiveOpenapiReserve', 'ownerId' => 'OwnerId', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->liveOpenapiReserve) { $res['LiveOpenapiReserve'] = $this->liveOpenapiReserve; } if (null !== $this->ownerId) { $res['OwnerId'] = $this->ownerId; } return $res; } /** * @param array $map * * @return ListLiveRealtimeLogDeliveryInfosRequest */ public static function fromMap($map = []) { $model = new self(); if (isset($map['LiveOpenapiReserve'])) { $model->liveOpenapiReserve = $map['LiveOpenapiReserve']; } if (isset($map['OwnerId'])) { $model->ownerId = $map['OwnerId']; } return $model; } }