| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) ContentDistribution | ContentDistribution | DeviceModule | Netflix |
| (2) ContentTitle | ContentTitle | ContentTitleModule | Netflix |
| (3) Device | Device | DeviceModule | Netflix |
| (4) DeviceIntegration | DeviceIntegration | DeviceModule | Netflix |
| (5) PlaybackSession | PlaybackSession | DeviceModule | Netflix |
| (6) ServiceSupply | ServiceSupply | Module | Netflix |
| (7) UserProfile | UserProfile | UserProfileModule | Netflix |
| ContentDistribution | DeviceModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) ContentTitle | LONG | ContentDistribution | ContentTitle | ContentTitleModule |
| (2) DistributionType | STRING | ContentDistribution | ||
| (3) EndDate | DATE | ContentDistribution | ||
| (4) Notes | STRING | ContentDistribution | ||
| (5) ServiceSupply | LONG | ContentDistribution | ServiceSupply | Module |
| (6) StartDate | DATE | ContentDistribution |
Example:
final ContentDistribution contentdistribution = (ContentDistribution) invokeModule(DEVICE_MODULE + "/contentdistribution/" + id, ContentDistribution.class);| Device | DeviceModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Category | STRING | Device | ||
| (2) Manufacturer | STRING | Device | ||
| (3) Name | STRING | Device |
Example:
final Device device = (Device) invokeModule(DEVICE_MODULE + "/device/" + id, Device.class);| DeviceIntegration | DeviceModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Device | LONG | DeviceIntegration | Device | DeviceModule |
| (2) EndDate | DATE | DeviceIntegration | ||
| (3) IntegrationType | STRING | DeviceIntegration | ||
| (4) Notes | STRING | DeviceIntegration | ||
| (5) ServiceSupply | LONG | DeviceIntegration | ServiceSupply | Module |
| (6) StartDate | DATE | DeviceIntegration |
Example:
final DeviceIntegration deviceintegration = (DeviceIntegration) invokeModule(DEVICE_MODULE + "/deviceintegration/" + id, DeviceIntegration.class);| PlaybackSession | DeviceModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) ContentTitle | LONG | PlaybackSession | ContentTitle | ContentTitleModule |
| (2) Device | LONG | PlaybackSession | Device | DeviceModule |
| (3) DurationSeconds | LONG | PlaybackSession | ||
| (4) EndedAt | DATE | PlaybackSession | ||
| (5) StartedAt | DATE | PlaybackSession | ||
| (6) UserProfile | LONG | PlaybackSession | UserProfile | UserProfileModule |
| (7) WasCompleted | BOOL | PlaybackSession |
Example:
final PlaybackSession playbacksession = (PlaybackSession) invokeModule(DEVICE_MODULE + "/playbacksession/" + id, PlaybackSession.class);| Contact | Donate | Imprint |