interface SpaceProperty {
    createdAt?: string;
    createdBy?: string;
    id?: string;
    key?: string;
    value?: unknown;
    version?: {
        createdAt?: string;
        createdBy?: string;
        message?: string;
        number?: number;
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • SpaceProperty

Properties

createdAt?: string

RFC3339 compliant date time at which the property was created.

createdBy?: string

Atlassian account ID of the user that created the space property.

id?: string

ID of the space property.

key?: string

Key of the space property.

value?: unknown

Value of the space property.

version?: {
    createdAt?: string;
    createdBy?: string;
    message?: string;
    number?: number;
} & {
    [key: string]: unknown;
}

Type declaration

  • OptionalcreatedAt?: string

    RFC3339 compliant date time at which the property's current version was created.

  • OptionalcreatedBy?: string

    Atlassian account ID of the user that created the space property's current version.

  • Optionalmessage?: string

    Message associated with the current version.

  • Optionalnumber?: number

    The space property's current version number.