This repository has been archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ultimatedion-Payment-experience'
- Loading branch information
Showing
6 changed files
with
504 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
namespace PayPal\Api; | ||
|
||
use PayPal\Common\PPModel; | ||
use PayPal\Rest\ApiContext; | ||
|
||
/** | ||
* Class FlowConfig | ||
* | ||
* @property string landing_page_type | ||
* @property string bank_txn_pending_url | ||
*/ | ||
class FlowConfig extends PPModel { | ||
|
||
|
||
/** | ||
* | ||
* @return string landing_page_type | ||
*/ | ||
public function getLandingPageType() { | ||
return $this->landing_page_type; | ||
} | ||
|
||
/* | ||
* @param string landing_page_type * | ||
*/ | ||
|
||
public function setLandingPageType($landing_page_type){ | ||
$this->landing_page_type = $landing_page_type; | ||
return $this; | ||
} | ||
|
||
|
||
/** | ||
* | ||
* @return string bank_txn_pending_url | ||
*/ | ||
public function getBankTxnPendingUrl() { | ||
return $this->bank_txn_pending_url; | ||
} | ||
|
||
/* | ||
* @param string bank_txn_pending_url * | ||
*/ | ||
|
||
public function setBankTxnPendingUrl($bank_txn_pending_url){ | ||
$this->bank_txn_pending_url = $bank_txn_pending_url; | ||
return $this; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?php | ||
namespace PayPal\Api; | ||
|
||
use PayPal\Common\PPModel; | ||
use PayPal\Rest\ApiContext; | ||
|
||
/** | ||
* Class InputFields | ||
* | ||
* @property integer no_shipping | ||
* @property integer address_override | ||
* @property boolean allow-note | ||
*/ | ||
class InputFields extends PPModel { | ||
|
||
|
||
/** | ||
* | ||
* @return integer no_shipping | ||
*/ | ||
public function getNoShipping() { | ||
return $this->no_shipping; | ||
} | ||
|
||
/* | ||
* @param integer no_shipping * | ||
*/ | ||
|
||
public function setNoShipping($no_shipping){ | ||
$this->no_shipping = $no_shipping; | ||
return $this; | ||
} | ||
|
||
|
||
/** | ||
* | ||
* @return integer address_override | ||
*/ | ||
public function getAddressOverride() { | ||
return $this->address_override; | ||
} | ||
|
||
/* | ||
* @param integer address_override * | ||
*/ | ||
|
||
public function setAddressOverride($address_override){ | ||
$this->address_override = $address_override; | ||
return $this; | ||
} | ||
|
||
/** | ||
* | ||
* @return boolean allow_note | ||
*/ | ||
public function getAllowNote() { | ||
return $this->allow_note; | ||
} | ||
|
||
/* | ||
* @param boolean allow_note * | ||
*/ | ||
|
||
public function setAllowNote($allow_note){ | ||
$this->allow_note = $allow_note; | ||
return $this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?php | ||
namespace PayPal\Api; | ||
|
||
use PayPal\Common\PPModel; | ||
use PayPal\Rest\ApiContext; | ||
|
||
/** | ||
* Class Presentation | ||
* | ||
* @property string brand_name | ||
* @property string logo_image | ||
* @property string locale_code | ||
*/ | ||
class Presentation extends PPModel { | ||
|
||
|
||
/** | ||
* | ||
* @return string brand_name | ||
*/ | ||
public function getBrandName() { | ||
return $this->brand_name; | ||
} | ||
|
||
/* | ||
* @param string brand_name * | ||
*/ | ||
|
||
public function setBrandName($brand_name){ | ||
$this->brand_name = $brand_name; | ||
return $this; | ||
} | ||
|
||
|
||
/** | ||
* | ||
* @return string logo_image | ||
*/ | ||
public function getLogoImage() { | ||
return $this->logo_image; | ||
} | ||
|
||
/* | ||
* @param string logo_image * | ||
*/ | ||
|
||
public function setLogoImage($logo_image){ | ||
$this->logo_image = $logo_image; | ||
return $this; | ||
} | ||
|
||
/** | ||
* | ||
* @return string locale_code | ||
*/ | ||
public function getLocaleCode() { | ||
return $this->logo_image; | ||
} | ||
|
||
/* | ||
* @param string locale_code * | ||
*/ | ||
|
||
public function setLocaleCode($locale_code){ | ||
$this->locale_code = $locale_code; | ||
return $this; | ||
} | ||
} |
Oops, something went wrong.