⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
work
/
vendor
/
omnipay
/
stripe
/
src
/
Message
/
View File Name :
ListCouponsRequest.php
<?php namespace Omnipay\Stripe\Message; /** * Stripe List Coupons Request. * * @see Omnipay\Stripe\Gateway * @link https://stripe.com/docs/api/coupons/list */ class ListCouponsRequest extends AbstractRequest { /** * @return mixed */ public function getCreated() { return $this->getParameter('created'); } /** * @param string $value * * @return ListCouponsRequest */ public function setCreated($value) { return $this->setParameter('created', $value); } /** * @return mixed */ public function getLimit() { return $this->getParameter('limit'); } /** * @param string $value * * @return ListCouponsRequest */ public function setLimit($value) { return $this->setParameter('limit', $value); } /** * A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. * For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your * subsequent call can include `ending_before=obj_ba`r in order to fetch the previous page of the list. * * @return mixed */ public function getEndingBefore() { return $this->getParameter('endingBefore'); } /** * A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. * For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your * subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list. * * @return mixed */ public function getStartingAfter() { return $this->getParameter('startingAfter'); } /** * @param string $value * * @return \Omnipay\Common\Message\AbstractRequest */ public function setStartingAfter($value) { return $this->setParameter('startingAfter', $value); } /** * @param string $value * * @return ListCouponsRequest */ public function setEndingBefore($value) { return $this->setParameter('endingBefore', $value); } public function getData() { $data = array(); if ($this->getLimit()) { $data['created'] = $this->getCreated(); } if ($this->getLimit()) { $data['limit'] = $this->getLimit(); } if ($this->getEndingBefore()) { $data['ending_before'] = $this->getEndingBefore(); } if ($this->getStartingAfter()) { $data['starting_after'] = $this->getStartingAfter(); } return $data; } public function getEndpoint() { return $this->endpoint.'/coupons'; } public function getHttpMethod() { return 'GET'; } }