public interface Products extends Service, ProductsTypes
_VAPI_SERVICE_ID
Modifier and Type | Method and Description |
---|---|
java.util.List<SubscriptionProducts> |
list(java.lang.String org)
List of all the products that are available for purchase.
|
void |
list(java.lang.String org,
AsyncCallback<java.util.List<SubscriptionProducts>> asyncCallback)
List of all the products that are available for purchase.
|
void |
list(java.lang.String org,
AsyncCallback<java.util.List<SubscriptionProducts>> asyncCallback,
InvocationConfig invocationConfig)
List of all the products that are available for purchase.
|
java.util.List<SubscriptionProducts> |
list(java.lang.String org,
InvocationConfig invocationConfig)
List of all the products that are available for purchase.
|
java.util.List<SubscriptionProducts> list(java.lang.String org)
Synchronous method overload. Result of the invocation will be reported as a method return value.
org
- Organization identifier (required)Unauthenticated
- UnauthorizedUnauthorized
- ForbiddenInternalServerError
- Internal server errorjava.util.List<SubscriptionProducts> list(java.lang.String org, InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig
to specify configuration for this particular invocation.
org
- Organization identifier (required)invocationConfig
- Configuration for the method invocation.Unauthenticated
- UnauthorizedUnauthorized
- ForbiddenInternalServerError
- Internal server errorvoid list(java.lang.String org, AsyncCallback<java.util.List<SubscriptionProducts>> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Operation Errors:
Unauthenticated
- Unauthorized
Unauthorized
- Forbidden
InternalServerError
- Internal server error
org
- Organization identifier (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void list(java.lang.String org, AsyncCallback<java.util.List<SubscriptionProducts>> asyncCallback, InvocationConfig invocationConfig)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Use invocationConfig
to specify configuration for this particular invocation.
Operation Errors:
Unauthenticated
- Unauthorized
Unauthorized
- Forbidden
InternalServerError
- Internal server error
org
- Organization identifier (required)asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.