JsonContentSchemaData

Represents the proposition response object containing a json-content schema.

iOS Interface

Copied to your clipboard
@objc(AEPJsonContentSchemaData)
@objcMembers
public class JsonContentSchemaData: NSObject, Codable {
/// Represents the content of the JsonContentSchemaData object. Its value's type is determined by `format`.
public let content: Any
/// Determines the value type of `content`.
public let format: ContentType?
...
}

Android Interface

Copied to your clipboard
public class JsonContentSchemaData implements SchemaData {
private Object content = null;
private ContentType format = null;
@Override
@Nullable public Object getContent() { return content; }
}