export Activity

interface Activity {
    caption?: null | string;
    created_at?: string;
    id?: null | string;
    key?: null | string;
    persona_id?: null | string;
    short_id?: null | string;
    status?: ActivityStatus;
    tasks?: null | ActivityTask[];
    tenant_id?: null | string;
    title?: null | string;
    type?: ActivityType;
    user_id?: null | string;
}

Properties

caption?: null | string

A full description of the activity (pulled from a resouce file)

created_at?: string
id?: null | string
key?: null | string

id of the object this activity is associated with

persona_id?: null | string

Id of the Persona associated with this Payment's wallet

short_id?: null | string
tasks?: null | ActivityTask[]
tenant_id?: null | string

Id of the account authorized to send payments

title?: null | string

A short description of the activity (pulled from a resource file)

user_id?: null | string

Id of the User associated with this Payment's wallet