blob: ed05c1e39b149f42c51a887668dfc4b6716fb8d0 [file] [log] [blame]
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: money.proto
package com.google.type;
public interface MoneyOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.type.Money)
com.google.protobuf.MessageOrBuilder {
/**
* <pre>
* The three-letter currency code defined in ISO 4217.
* </pre>
*
* <code>string currency_code = 1;</code>
* @return The currencyCode.
*/
java.lang.String getCurrencyCode();
/**
* <pre>
* The three-letter currency code defined in ISO 4217.
* </pre>
*
* <code>string currency_code = 1;</code>
* @return The bytes for currencyCode.
*/
com.google.protobuf.ByteString
getCurrencyCodeBytes();
/**
* <pre>
* The whole units of the amount.
* For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
* </pre>
*
* <code>int64 units = 2;</code>
* @return The units.
*/
long getUnits();
/**
* <pre>
* Number of nano (10^-9) units of the amount.
* The value must be between -999,999,999 and +999,999,999 inclusive.
* If `units` is positive, `nanos` must be positive or zero.
* If `units` is zero, `nanos` can be positive, zero, or negative.
* If `units` is negative, `nanos` must be negative or zero.
* For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.
* </pre>
*
* <code>int32 nanos = 3;</code>
* @return The nanos.
*/
int getNanos();
}