public sealed class Money : Protobuf.IMessage<Money>, Protobuf.IBufferMessage
Represents an amount of money with its currency type.
Namespace
Google.Type
Assembly
Google.Api.CommonProtos.dll
Constructors
Money()
Money(Money)
public Money(Money other)
Parameter
Type | Name | Description |
---|
Money | other | |
Fields
CurrencyCodeFieldNumber
public const int CurrencyCodeFieldNumber = 1
Field number for the "currency_code" field.
Field Value
NanosFieldNumber
public const int NanosFieldNumber = 3
Field number for the "nanos" field.
Field Value
UnitsFieldNumber
public const int UnitsFieldNumber = 2
Field number for the "units" field.
Field Value
Properties
CurrencyCode
public string CurrencyCode { get; set; }
The 3-letter currency code defined in ISO 4217.
Property Value
DecimalValue
public decimal DecimalValue { get; set; }
The amount of money in Decimal format. This is an abstraction of the Units and Nanos properties.
Getting this property combines those property values, and setting this property will set both of those properties.
Property Value
Exceptions
Type | Condition |
---|
ArgumentOutOfRangeException | The integral part of the decimal must be a valid Int64, and the fractional part must have a maximum of 9 digits of precision.
|
Descriptor
public static Protobuf.Reflection.MessageDescriptor Descriptor { get; }
Property Value
Nanos
public int Nanos { get; set; }
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.
Property Value
Parser
public static Protobuf.MessageParser<Money> Parser { get; }
Property Value
Units
public long Units { get; set; }
The whole units of the amount.
For example if currencyCode
is "USD"
, then 1 unit is one US dollar.
Property Value
Methods
CalculateSize()
public int CalculateSize()
Returns
Clone()
Returns
Equals(Money)
public bool Equals(Money other)
Parameter
Type | Name | Description |
---|
Money | other | |
Returns
Equals(Object)
public override bool Equals(object other)
Parameter
Type | Name | Description |
---|
Object | other | |
Returns
GetHashCode()
public override int GetHashCode()
Returns
public void MergeFrom(Protobuf.CodedInputStream input)
Parameter
MergeFrom(Money)
public void MergeFrom(Money other)
Parameter
Type | Name | Description |
---|
Money | other | |
ToString()
public override string ToString()
Returns
WriteTo(Protobuf.CodedOutputStream)
public void WriteTo(Protobuf.CodedOutputStream output)
Parameter
Implements