PayPal\Api\Presentation::getLogoImage PHP Méthode

getLogoImage() public méthode

A URL to the logo image. A valid media type is .gif, .jpg, or .png. The maximum width of the image is 190 pixels. The maximum height of the image is 60 pixels. PayPal crops images that are larger. PayPal places your logo image at the top of the cart review area. PayPal recommends that you store the image on a secure (HTTPS) server. Otherwise, web browsers display a message that checkout pages contain non-secure items. Character length and limit: 127 single-byte alphanumeric characters.
public getLogoImage ( ) : string
Résultat string
    public function getLogoImage()
    {
        return $this->logo_image;
    }

Usage Example

 /**
  * @depends testSerializationDeserialization
  * @param Presentation $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getBrandName(), "TestSample");
     $this->assertEquals($obj->getLogoImage(), "TestSample");
     $this->assertEquals($obj->getLocaleCode(), "TestSample");
     $this->assertEquals($obj->getReturnUrlLabel(), "TestSample");
     $this->assertEquals($obj->getNoteToSellerLabel(), "TestSample");
 }
All Usage Examples Of PayPal\Api\Presentation::getLogoImage