librespot/protocol/proto/spotify/audiobookcashier/v1/audiobook_price.proto
2024-12-16 22:57:13 +01:00

18 lines
385 B
Protocol Buffer
Executable file

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;
}