mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
18 lines
385 B
Protocol Buffer
Executable file
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;
|
|
}
|
|
|