コード例 #1
0
ファイル: WebProfile.php プロジェクト: seoduda/Patua
 /**
  * Lists all web experience profiles that exist for a merchant (or subject).
  *
  * @param ApiContext $apiContext is the APIContext for this call. It can be used to pass dynamic configuration and credentials.
  * @param PayPalRestCall $restCall is the Rest Call Service that is used to make rest calls
  * @return WebProfile[]
  */
 public static function get_list($apiContext = null, $restCall = null)
 {
     $payLoad = "";
     $json = self::executeCall("/v1/payment-experience/web-profiles/", "GET", $payLoad, null, $apiContext, $restCall);
     return WebProfile::getList($json);
 }