Edit in GitHubLog an issue

InboxContentSchemaData

Represents the proposition response object containing a inbox-item schema.

Android Interface

Copied to your clipboard
public class InboxContentSchemaData implements SchemaData {
// Map containing the inbox content data
private Map<String, Object> content = null;
// Map containing additional metadata for this inbox content
private Map<String, Object> metadata = null;
...
@Override
public 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 clipboard
public 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 clipboard
public Map<String, Object> getMetadata()

Returns

A Map<String, Object> containing the inbox metadata, or null if not present or parsing failed.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2026 Adobe. All rights reserved.