ManifestPayload

sealed class ManifestPayload

A application verion's manifest file. This is a JSON document that has a single key (PayloadData) where the value is an escaped string representation of the application manifest (graph.json). This file is located in the graphs folder in your application source.

Inheritors

Types

Link copied to clipboard
data class PayloadData(val value: String) : ManifestPayload

The application manifest.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this ManifestPayload as a PayloadData and retrieves its kotlin.String value. Throws an exception if the ManifestPayload is not a PayloadData.

Link copied to clipboard

Casts this ManifestPayload as a PayloadData and retrieves its kotlin.String value. Returns null if the ManifestPayload is not a PayloadData.