TextHtmlStatementOutputData¶
-
class
oci.data_flow.models.
TextHtmlStatementOutputData
(**kwargs)¶ Bases:
oci.data_flow.models.statement_output_data.StatementOutputData
The statement output data in html 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 TextHtmlStatementOutputData. Methods
__init__
(**kwargs)Initializes a new TextHtmlStatementOutputData 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 TextHtmlStatementOutputData object with values from keyword arguments. The default value of the
type
attribute of this class isTEXT_HTML
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 TextHtmlStatementOutputData. Allowed values for this property are: “TEXT_PLAIN”, “TEXT_HTML”, “IMAGE_PNG”
- value (str) – The value to assign to the value property of this TextHtmlStatementOutputData.
-
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 TextHtmlStatementOutputData. The statement code execution output in html format.
Returns: The value of this TextHtmlStatementOutputData. Return type: str
-