NAME
PayProp::API::Public::Client::Request::Entity - Module containing various entity types as attributes.
SYNOPSIS
use PayProp::API::Public::Client::Request::Entity;
my $Entity = PayProp::API::Public::Client::Request::Entity->new(
domain => 'API_DOMAIN.com', # Required: API domain.
authorization => C<PayProp::API::Public::Client::Authorization::*>, # Required: Instance of an authorization module.
);
DESCRIPTION
Contains various API entity types defined on attributes. This module is intended to be accessed via instance of PayProp::API::Public::Client
.
Example:
my $Entity = PayProp::API::Public::Client->new( ... )
->entity
;