interface SetApplicationProperty {
    body?: {
        id?: string;
        value?: string;
    };
    id: string;
    value?: string;
}

Hierarchy (view full)

Properties

Properties

body?: {
    id?: string;
    value?: string;
}

Type declaration

  • Optional id?: string

    The ID of the application property.

  • Optional value?: string

    The new value.

id: string

The key of the application property to update.

value?: string

The new value.