class documentation

class AsyncStiggClient(AsyncClient):

Constructor: AsyncStiggClient(enable_edge, edge_api_url, *args, **kwargs)

View In Hierarchy

Undocumented

Method __init__ Undocumented
Method execute Undocumented
Async Method get_active_subscriptions_list Undocumented
Method get_data Undocumented
Async Method get_entitlement Undocumented
Async Method get_entitlements Undocumented
Async Method get_paywall Undocumented
Async Method report_usage Undocumented
Instance Variable edge_api_url Undocumented
Instance Variable enable_edge Undocumented
def __init__(self, enable_edge: bool, edge_api_url: str, *args, **kwargs):

Undocumented

def execute(self, query: str, operation_name: str | None = None, variables: dict[str, Any] | None = None, **kwargs: Any) -> httpx.Response:

Undocumented

async def get_active_subscriptions_list(self, input: GetActiveSubscriptionsInput, **kwargs: Any) -> GetActiveSubscriptionsList:

Undocumented

@retry(**RETRY_KWARGS)
def get_data(self, *args, **kwargs):

Undocumented

async def get_entitlement(self, input: FetchEntitlementQuery, **kwargs: Any) -> GetEntitlement:

Undocumented

async def get_entitlements(self, query: FetchEntitlementsQuery, **kwargs: Any) -> GetEntitlements:

Undocumented

async def get_paywall(self, input: GetPaywallInput, **kwargs: Any) -> GetPaywall:

Undocumented

async def report_usage(self, input: UsageMeasurementCreateInput | ReportUsageInput, **kwargs: Any) -> ReportUsage:

Undocumented

edge_api_url =

Undocumented

enable_edge =

Undocumented