Type alias ConnectionData

ConnectionData: {
    connected_at: string;
    connected_by_user_id: number;
    connected_by_user_slug?: string;
    connected_by_username?: string;
    connection_id?: number;
    position: number;
    selected: boolean;
}

Type declaration

  • connected_at: string

    (Timestamp) Time when block was connected to the channel (if the block was created at the same time as the channel this will be identical to created_at)

  • connected_by_user_id: number

    (Integer) ID of the user who connected the block to the channel (if the block was not reused by another user, this will be identical to user_id)

  • Optional connected_by_user_slug?: string
  • Optional connected_by_username?: string
  • Optional connection_id?: number
  • position: number

    (Integer) The position of the block inside the channel (as determined by the channel's author and collaborators)

  • selected: boolean

    (Boolean) Block is marked as selected inside the channel (this is an initial attempt to allow users to "feature" some content over others, can be used for moderation, introduction text, etc)

Generated using TypeDoc