Interface UpdateStorySendFailed

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

interface UpdateStorySendFailed {
    @type: "updateStorySendFailed";
    error: Error;
    error_type: CanSendStoryResult;
    story: Story;
}

Properties

@type: "updateStorySendFailed"
error: Error

The cause of the story sending failure.

error_type: CanSendStoryResult

Type of the error; may be null if unknown.

story: Story

The failed to send story.