PayPal\Test\Api\PresentationTest::getJson PHP Method

getJson() public static method

Gets Json String of Object Presentation
public static getJson ( ) : string
return string
    public static function getJson()
    {
        return '{"brand_name":"TestSample","logo_image":"TestSample","locale_code":"TestSample","return_url_label":"TestSample","note_to_seller_label":"TestSample"}';
    }

Usage Example

 /**
  * Gets Json String of Object WebProfile
  * @return string
  */
 public static function getJson()
 {
     return '{"id":"TestSample","name":"TestSample","temporary":true,"flow_config":' . FlowConfigTest::getJson() . ',"input_fields":' . InputFieldsTest::getJson() . ',"presentation":' . PresentationTest::getJson() . '}';
 }