|
|
@@ -9,20 +9,8 @@ use Yii;
|
|
|
* This is the model class for collection "ar_approach_order_call".
|
|
|
*
|
|
|
* @property \MongoDB\BSON\ObjectID|string $_id
|
|
|
- * @property mixed $id
|
|
|
- * @property mixed $domain
|
|
|
- * @property mixed $status
|
|
|
- * @property mixed $reference
|
|
|
- * @property mixed $amount
|
|
|
- * @property mixed $created_at
|
|
|
- * @property mixed $paid_at
|
|
|
- * @property mixed $channel
|
|
|
- * @property mixed $currency
|
|
|
- * @property mixed $ip_address
|
|
|
- * @property mixed $metadata
|
|
|
- * @property mixed $return_result
|
|
|
- * @property mixed $customer
|
|
|
- * @property mixed $email
|
|
|
+ * @property mixed $event
|
|
|
+ * @property mixed $data
|
|
|
|
|
|
*/
|
|
|
class ApproachOrderCall extends MongoActiveRecord
|
|
|
@@ -57,19 +45,7 @@ class ApproachOrderCall extends MongoActiveRecord
|
|
|
{
|
|
|
return [
|
|
|
'id',
|
|
|
- 'domain',
|
|
|
- 'status',
|
|
|
- 'reference',
|
|
|
- 'amount',
|
|
|
- 'created_at',
|
|
|
- 'paid_at',
|
|
|
- 'channel',
|
|
|
- 'currency',
|
|
|
- 'ip_address',
|
|
|
- 'metadata',
|
|
|
- 'return_result',
|
|
|
- 'customer',
|
|
|
- 'email',
|
|
|
+ 'data',
|
|
|
];
|
|
|
}
|
|
|
|
|
|
@@ -79,20 +55,8 @@ class ApproachOrderCall extends MongoActiveRecord
|
|
|
public function attributeLabels()
|
|
|
{
|
|
|
return [
|
|
|
- 'id' => 'PayID',
|
|
|
- 'domain' => 'domain',
|
|
|
- 'status' => 'status',
|
|
|
- 'reference' => 'reference',
|
|
|
- 'amount' => 'amount(kobo)',
|
|
|
- 'created_at' => 'created_at',
|
|
|
- 'paid_at' => 'paid_at',
|
|
|
- 'channel' => 'channel',
|
|
|
- 'currency' => 'currency',
|
|
|
- 'ip_address' => 'ip_address',
|
|
|
- 'metadata' => 'metadata',
|
|
|
- 'return_result' => 'return_result',
|
|
|
- 'customer' => 'customer',
|
|
|
- 'email' => 'email',
|
|
|
+ 'event' => 'event',
|
|
|
+ 'data' => 'data',
|
|
|
];
|
|
|
}
|
|
|
|