TextPlainStatementOutputData

class oci.data_flow.models.TextPlainStatementOutputData(**kwargs)

Bases: oci.data_flow.models.statement_output_data.StatementOutputData

The statement output data in text format.

Attributes

TYPE_IMAGE_PNG str(object=’’) -> str
TYPE_TEXT_HTML str(object=’’) -> str
TYPE_TEXT_PLAIN str(object=’’) -> str
type [Required] Gets the type of this StatementOutputData.
value [Required] Gets the value of this TextPlainStatementOutputData.

Methods

__init__(**kwargs) Initializes a new TextPlainStatementOutputData object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
TYPE_IMAGE_PNG = 'IMAGE_PNG'
TYPE_TEXT_HTML = 'TEXT_HTML'
TYPE_TEXT_PLAIN = 'TEXT_PLAIN'
__init__(**kwargs)

Initializes a new TextPlainStatementOutputData object with values from keyword arguments. The default value of the type attribute of this class is TEXT_PLAIN and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • type (str) – The value to assign to the type property of this TextPlainStatementOutputData. Allowed values for this property are: “TEXT_PLAIN”, “TEXT_HTML”, “IMAGE_PNG”
  • value (str) – The value to assign to the value property of this TextPlainStatementOutputData.
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

type

[Required] Gets the type of this StatementOutputData. The type of the StatementOutputData like TEXT_PLAIN, TEXT_HTML or IMAGE_PNG.

Allowed values for this property are: “TEXT_PLAIN”, “TEXT_HTML”, “IMAGE_PNG”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The type of this StatementOutputData.
Return type:str
value

[Required] Gets the value of this TextPlainStatementOutputData. The statement code execution output in text format.

Returns:The value of this TextPlainStatementOutputData.
Return type:str