Edit in GitHubLog an issue

HtmlContentSchemaData

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

iOS Interface

Copied to your clipboard
@objc(AEPHtmlContentSchemaData)
@objcMembers
public class HtmlContentSchemaData: NSObject, Codable {
/// Represents the content of the HtmlContentSchemaData object.
public let content: String
/// Determines the value type of `content`. For HtmlContentSchemaData objects, this value is always `.textHtml`.
public let format: ContentType?
...
}

Android Interface

Copied to your clipboard
public class HtmlContentSchemaData implements SchemaData {
private String content = null;
private ContentType format = null;
@Override
@Nullable public String getContent() { return content; }
public ContentType getFormat() { return format; }
}
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.