Type alias TypedJson<V>

TypedJson<V>: {
    @type: TypedJsonDiscriminator;
    value: V;
}

Type describing the JSON representation of strong types used in the SDK.

Type Parameters

  • V

    The serializable JSON value

Type declaration

  • @type: TypedJsonDiscriminator

    The type discriminator

  • value: V

    The serializable type value

Generated using TypeDoc