pub struct Station {Show 15 fields
pub station_id: String,
pub station_token: String,
pub station_name: String,
pub station_detail_url: String,
pub quick_mix_station_ids: Vec<String>,
pub is_quick_mix: bool,
pub suppress_video_ads: bool,
pub is_shared: bool,
pub requires_clean_ads: bool,
pub allow_rename: bool,
pub allow_add_music: bool,
pub allow_delete: bool,
pub allow_edit_description: bool,
pub date_created: Timestamp,
pub optional: HashMap<String, Value>,
}
Expand description
“stations”:[ { “suppressVideoAds”:true, “isQuickMix”:true, “stationId”:“3914377363925265”, “stationDetailUrl”:“https://www.pandora.com/login?target=%2Fstations%2Fa61985110ea3d6c6c8d8a9c038588b26425ba2910f7abf8b”, “isShared”:false, “dateCreated”:{ “date”:8, “day”:4, “hours”:22, “minutes”:44, “month”:10, “nanos”:241000000, “seconds”:46, “time”:1194590686241, “timezoneOffset”:480, “year”:107 }, “stationToken”:“3914377363925265”, “stationName”:“QuickMix”, “stationSharingUrl”:“https://www.pandora.com/login?target=%2Fshare%2Fstation%2Fa61985110ea3d6c6c8d8a9c038588b26425ba2910f7abf8b”, “requiresCleanAds”:true, “allowRename”:false, “allowAddMusic”:false, “quickMixStationIds”:[ “339646069607180561”, “339644480469281041” ], “allowDelete”:false, “allowEditDescription”:false } ],
Fields§
§station_id: String
Unique identifier (token) for this station. Currently stationId and stationToken are the same.
station_token: String
Unique identifier (token) for this station. Currently stationId and stationToken are the same.
station_name: String
User-defined name for this station.
station_detail_url: String
Url for additional information about station.
quick_mix_station_ids: Vec<String>
Ids for stations included in this quickmix.
is_quick_mix: bool
Is this station a quickmix.
suppress_video_ads: bool
Unknown.
Wether this station is shared.
requires_clean_ads: bool
Unknown.
allow_rename: bool
Whether station may be renamed.
allow_add_music: bool
Whether station allows adding music.
allow_delete: bool
Whether station can be deleted.
allow_edit_description: bool
Whether station description can be edited.
date_created: Timestamp
Timestamp for when the station was created.
optional: HashMap<String, Value>
Additional, optional fields of the response.