Announcement Types

DBMS_CLOUD_OCI_AS_ANNOUNCEMENT_GET_ANNOUNCEMENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_announcement

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AS_ANNOUNCEMENT_GET_ANNOUNCEMENT_USER_STATUS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_announcement_user_status

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AS_ANNOUNCEMENT_LIST_ANNOUNCEMENTS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_announcements

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AS_ANNOUNCEMENT_UPDATE_ANNOUNCEMENT_USER_STATUS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_announcement_user_status

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer