InboxContentSchemaData
Represents the proposition response object containing a inbox-item schema.
Android Interface
Copied to your clipboardpublic class InboxContentSchemaData implements SchemaData {// Map containing the inbox content dataprivate Map<String, Object> content = null;// Map containing additional metadata for this inbox contentprivate Map<String, Object> metadata = null;...@Overridepublic Map<String, Object> getContent() {return content;}public Map<String, Object> getMetadata() {return metadata;}}
Public functions
getContent
Gets the content map for this inbox schema data.
Syntax
Copied to your clipboardpublic Map<String, Object> getContent()
Returns
A Map<String, Object> containing the inbox content, or null if not present or parsing failed.
getMetadata
Gets the metadata map for this inbox schema data.
Syntax
Copied to your clipboardpublic Map<String, Object> getMetadata()
Returns
A Map<String, Object> containing the inbox metadata, or null if not present or parsing failed.
