ePages 7.37.0 - DE_EPAGES/WebService/API/WebService/FactoryService2.pm

Package DE_EPAGES::WebService::API::WebService::FactoryService2

provides web service access to objects

Example
use DE_EPAGES::WebService::API::Client;
my $FactoryService = DE_EPAGES::WebService::API::Client
    ->uri('urn://epages.de/WebService/FactoryService/2016/01')
    ->proxy("http://%2fUsers%2f$Login:$Password\@localhost:8080/epages/Store.soap");
my $ShopID = $FactoryService->objectByPath( '/Shops/DemoShop' )->result;

Functions

existsClassAttribute

existsClassAttribute

Returns true if an attribute with this name exists in the class.

Syntax
$Exist = $FactoryService->existsClassAttribute( $ClassAlias, $AttributeAlias )->result;
Example
if( $FactoryService->existsClassAttribute( 'System','Attribute' ) ) { ... }
Input
$ClassAlias (string)
class name
$AttributeAlias (string)
Attribute name
Return
$Exists (boolean)
true it the attribute exists