OSP Gateway Subscription Service Types

DBMS_CLOUD_OCI_OG_SUBSCRIPTION_SERVICE_AUTHORIZE_SUBSCRIPTION_PAYMENT_RESPONSE_T Type

Contains the response body, headers and the status code of the authorize_subscription_payment request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_og_subscription_service_authorize_subscription_payment_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_osp_gateway_authorize_subscription_payment_receipt_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of authorize_subscription_payment

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OG_SUBSCRIPTION_SERVICE_GET_SUBSCRIPTION_RESPONSE_T Type

Contains the response body, headers and the status code of the get_subscription request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_og_subscription_service_get_subscription_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_osp_gateway_subscription_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_subscription

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OG_SUBSCRIPTION_SERVICE_LIST_SUBSCRIPTIONS_RESPONSE_T Type

Contains the response body, headers and the status code of the list_subscriptions request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_og_subscription_service_list_subscriptions_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_osp_gateway_subscription_collection_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of list_subscriptions

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OG_SUBSCRIPTION_SERVICE_PAY_SUBSCRIPTION_RESPONSE_T Type

Contains the response body, headers and the status code of the pay_subscription request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_og_subscription_service_pay_subscription_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_osp_gateway_pay_subscription_receipt_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of pay_subscription

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OG_SUBSCRIPTION_SERVICE_UPDATE_SUBSCRIPTION_RESPONSE_T Type

Contains the response body, headers and the status code of the update_subscription request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_og_subscription_service_update_subscription_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_osp_gateway_subscription_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of update_subscription

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer