| Services | Contact | Donate | About | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Caption | Caption | LiveStreamModule | YouTubeCom |
| (2) Channel | Channel | ChannelModule | YouTubeCom |
| (3) LiveChatMessage | LiveChatMessage | LiveStreamModule | YouTubeCom |
| (4) LiveStream | LiveStream | LiveStreamModule | YouTubeCom |
| (5) Thumbnail | Thumbnail | LiveStreamModule | YouTubeCom |
| (6) User | User | UserModule | YouTubeCom |
| (7) Video | Video | VideoModule | YouTubeCom |
| Caption | LiveStreamModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Caption | ||
| (2) Format | STRING | Caption | ||
| (3) IsAutoGenerated | BOOL | Caption | ||
| (4) Language | STRING | Caption | ||
| (5) Name | STRING | Caption | ||
| (6) StorageKey | STRING | Caption | ||
| (7) UpdatedAt | DATE | Caption | ||
| (8) Video | LONG | Caption | Video | VideoModule |
Example:
final Caption caption = (Caption) invokeModule(LIVE_STREAM_MODULE + "/caption/" + id, Caption.class);| LiveChatMessage | LiveStreamModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | LiveChatMessage | ||
| (2) Currency | STRING | LiveChatMessage | ||
| (3) IsDeleted | BOOL | LiveChatMessage | ||
| (4) LiveStream | LONG | LiveChatMessage | LiveStream | LiveStreamModule |
| (5) MessageText | STRING | LiveChatMessage | ||
| (6) SuperChatAmount | DOUBLE | LiveChatMessage | ||
| (7) User | LONG | LiveChatMessage | User | UserModule |
Example:
final LiveChatMessage livechatmessage = (LiveChatMessage) invokeModule(LIVE_STREAM_MODULE + "/livechatmessage/" + id, LiveChatMessage.class);| LiveStream | LiveStreamModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) ActualEndAt | DATE | LiveStream | ||
| (2) ActualStartAt | DATE | LiveStream | ||
| (3) Channel | LONG | LiveStream | Channel | ChannelModule |
| (4) ConcurrentViewersPeak | LONG | LiveStream | ||
| (5) CreatedAt | DATE | LiveStream | ||
| (6) Description | STRING | LiveStream | ||
| (7) ScheduledStartAt | DATE | LiveStream | ||
| (8) Status | STRING | LiveStream | ||
| (9) Title | STRING | LiveStream | ||
| (10) Video | LONG | LiveStream | Video | VideoModule |
Example:
final LiveStream livestream = (LiveStream) invokeModule(LIVE_STREAM_MODULE + "/livestream/" + id, LiveStream.class);| Thumbnail | LiveStreamModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Thumbnail | ||
| (2) Height | LONG | Thumbnail | ||
| (3) QualityLabel | STRING | Thumbnail | ||
| (4) Url | STRING | Thumbnail | ||
| (5) Video | LONG | Thumbnail | Video | VideoModule |
| (6) Width | LONG | Thumbnail |
Example:
final Thumbnail thumbnail = (Thumbnail) invokeModule(LIVE_STREAM_MODULE + "/thumbnail/" + id, Thumbnail.class);| Services | Contact | Donate | About | Imprint |