Interface StoriesStory

interface StoriesStory {
    access_key: string;
    can_like: number | boolean;
    can_use_in_narrative: number | boolean;
    date: number;
    expires_at: number;
    first_narrative_title: string;
    id: number;
    is_deleted: number | boolean;
    is_expired: number | boolean;
    narratives_count: number;
    owner_id: number;
    parent_story_access_key: string;
    parent_story_id: number;
    parent_story_owner_id: number;
    views: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

access_key: string

Access key for private object.

can_like: number | boolean

Information whether current user can like the story.

can_use_in_narrative: number | boolean
date: number

Date when story has been added in Unixtime.

expires_at: number

Story expiration time. Unixtime.

first_narrative_title: string
id: number

Story ID.

is_deleted: number | boolean

Information whether the story is deleted (false - no, true - yes).

is_expired: number | boolean

Information whether the story is expired (false - no, true - yes).

narratives_count: number
owner_id: number

Story owner's ID.

parent_story_access_key: string

Access key for private object.

parent_story_id: number

Parent story ID.

parent_story_owner_id: number

Parent story owner's ID.

views: number

Views number.

Generated using TypeDoc