DBMS_CLOUD_OCI_TMCP_ORDERS_ACTIVATE_ORDER_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the activate_order request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_orders_activate_order_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_TMCP_ORDERS_GET_ORDER_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_order request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_orders_get_order_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_tenant_manager_control_plane_order_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;