mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-28 17:21:52 +00:00
19 lines
385 B
Protocol Buffer
19 lines
385 B
Protocol Buffer
|
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;
|
||
|
}
|
||
|
|