@openstream/client
Version:
Openstream Radio Server Client
43 lines • 1.71 kB
TypeScript
import type { CountryCode } from "./CountryCode.js";
import type { DateTime } from "./DateTime.js";
import type { LangCode } from "./LangCode.js";
import type { Metadata } from "./db/Metadata.js";
import type { StationFrequency } from "./StationFrequency.js";
import type { StationTypeOfContent } from "./db/StationTypeOfContent.js";
export type UserPublicStation = {
_id: string;
account_id: string;
picture_id: string;
name: string;
slug: string | null | undefined;
slogan: string | null | undefined;
description: string | null | undefined;
type_of_content: StationTypeOfContent;
country_code: CountryCode;
lang_code: LangCode;
frequency: StationFrequency | null | undefined;
email: string | null | undefined;
phone: string | null | undefined;
whatsapp: string | null | undefined;
website_url: string | null | undefined;
twitter_url: string | null | undefined;
facebook_url: string | null | undefined;
instagram_url: string | null | undefined;
threads_url: string | null | undefined;
twitch_url: string | null | undefined;
tiktok_url: string | null | undefined;
youtube_url: string | null | undefined;
spotify_url: string | null | undefined;
radiocut_url: string | null | undefined;
app_store_url: string | null | undefined;
google_play_url: string | null | undefined;
user_metadata: Metadata;
external_relay_url: string | null | undefined;
external_relay_redirect: boolean;
playlist_is_randomly_shuffled: boolean;
source_password: string;
created_at: DateTime;
updated_at: DateTime;
deleted_at: DateTime | null | undefined;
};
//# sourceMappingURL=UserPublicStation.d.ts.map