librespot/protocol/proto/spotify/audiobookcashier/v1/audiobook_price.proto

19 lines
385 B
Protocol Buffer
Raw Normal View History

2024-12-16 20:48:13 +00:00
syntax = "proto3";
package spotify.audiobookcashier.v1;
option java_package = "com.spotify.audiobookcashier.v1";
option java_multiple_files = true;
message Price {
double amount = 1;
string currency = 2;
string formatted_price = 3;
}
message AudiobookPrice {
.spotify.audiobookcashier.v1.Price final_price = 1;
.spotify.audiobookcashier.v1.Price final_list_price = 2;
}