# Service ## Example Usage ```typescript import { Service, ServiceStatus } from "@lukehagar/plexjs/models/operations"; let value: Service = { identifier: "metadata-dev", endpoint: "https://epg.provider.plex.tv", token: "DjoMtqFAGRL1uVtCyF1dKIorTbShJeqv", secret: "", status: ServiceStatus.Online, }; ``` ## Fields | Field | Type | Required | Description | Example | | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | | `identifier` | *string* | :heavy_check_mark: | N/A | metadata-dev | | `endpoint` | *string* | :heavy_check_mark: | N/A | https://epg.provider.plex.tv | | `token` | *string* | :heavy_check_mark: | N/A | DjoMtqFAGRL1uVtCyF1dKIorTbShJeqv | | `secret` | *string* | :heavy_check_mark: | N/A | | | `status` | [operations.ServiceStatus](../../models/operations/servicestatus.md) | :heavy_check_mark: | N/A | online |