Interface UpdateStoryPostFailed

A story failed to post. If the story posting is canceled, then updateStoryDeleted will be received instead of this update. Subtype of Update.

interface UpdateStoryPostFailed {
    @type: "updateStoryPostFailed";
    error: Error;
    error_type: CanPostStoryResult;
    story: Story;
}

Properties

@type: "updateStoryPostFailed"
error: Error

The cause of the story posting failure.

error_type: CanPostStoryResult

Type of the error; may be null if unknown.

story: Story

The failed to post story.