Property Value List
class PropertyValueList
Builder-style class for constructing a list of property values. This class provides a fluent API for setting multiple property values when creating or updating a page.
Example usage:
val properties = PropertyValueList().apply {
title("Name", "My Page")
number("Price", 99.99)
select("Status", "In Progress")
multiSelect("Tags", "Important", "Urgent")
}Content copied to clipboard
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun text(idOrName: String, text: String, linkUrl: String? = null, annotations: RichTextAnnotations = RichTextAnnotations.DEFAULT): PropertyValueList
Link copied to clipboard
fun title(idOrName: String, text: String, linkUrl: String? = null, annotations: RichTextAnnotations = RichTextAnnotations.DEFAULT): PropertyValueList
Link copied to clipboard