public final class Price extends GeneratedMessage implements PriceOrBuilder
Represents the price of the Offer.
Protobuf type google.cloud.channel.v1.Price
Inherited Members
com.google.protobuf.GeneratedMessage.<ContainingT,T>newFileScopedGeneratedExtension(java.lang.Class<?>,com.google.protobuf.Message)
com.google.protobuf.GeneratedMessage.<ContainingT,T>newMessageScopedGeneratedExtension(com.google.protobuf.Message,int,java.lang.Class<?>,com.google.protobuf.Message)
com.google.protobuf.GeneratedMessage.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessage.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessage.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessage.<V>serializeBooleanMapTo(com.google.protobuf.CodedOutputStream,com.google.protobuf.MapField<java.lang.Boolean,V>,com.google.protobuf.MapEntry<java.lang.Boolean,V>,int)
com.google.protobuf.GeneratedMessage.<V>serializeIntegerMapTo(com.google.protobuf.CodedOutputStream,com.google.protobuf.MapField<java.lang.Integer,V>,com.google.protobuf.MapEntry<java.lang.Integer,V>,int)
com.google.protobuf.GeneratedMessage.<V>serializeLongMapTo(com.google.protobuf.CodedOutputStream,com.google.protobuf.MapField<java.lang.Long,V>,com.google.protobuf.MapEntry<java.lang.Long,V>,int)
com.google.protobuf.GeneratedMessage.<V>serializeStringMapTo(com.google.protobuf.CodedOutputStream,com.google.protobuf.MapField<java.lang.String,V>,com.google.protobuf.MapEntry<java.lang.String,V>,int)
com.google.protobuf.GeneratedMessage.canUseUnsafe()
com.google.protobuf.GeneratedMessage.emptyBooleanList()
com.google.protobuf.GeneratedMessage.emptyDoubleList()
com.google.protobuf.GeneratedMessage.emptyFloatList()
com.google.protobuf.GeneratedMessage.emptyIntList()
com.google.protobuf.GeneratedMessage.emptyLongList()
com.google.protobuf.GeneratedMessage.internalGetMapFieldReflection(int)
com.google.protobuf.GeneratedMessage.isStringEmpty(java.lang.Object)
com.google.protobuf.GeneratedMessage.mergeFromAndMakeImmutableInternal(com.google.protobuf.CodedInputStream,com.google.protobuf.ExtensionRegistryLite)
com.google.protobuf.GeneratedMessage.newInstance(com.google.protobuf.GeneratedMessage.UnusedPrivateParameter)
com.google.protobuf.GeneratedMessage.parseUnknownFieldProto3(com.google.protobuf.CodedInputStream,com.google.protobuf.UnknownFieldSet.Builder,com.google.protobuf.ExtensionRegistryLite,int)
Static Fields
BASE_PRICE_FIELD_NUMBER
public static final int BASE_PRICE_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
DISCOUNT_COMPONENTS_FIELD_NUMBER
public static final int DISCOUNT_COMPONENTS_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
DISCOUNT_FIELD_NUMBER
public static final int DISCOUNT_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
EFFECTIVE_PRICE_FIELD_NUMBER
public static final int EFFECTIVE_PRICE_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
EXTERNAL_PRICE_URI_FIELD_NUMBER
public static final int EXTERNAL_PRICE_URI_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
PRICE_PERIOD_FIELD_NUMBER
public static final int PRICE_PERIOD_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
|
Static Methods
getDefaultInstance()
public static Price getDefaultInstance()
| Returns |
| Type |
Description |
Price |
|
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
newBuilder()
public static Price.Builder newBuilder()
newBuilder(Price prototype)
public static Price.Builder newBuilder(Price prototype)
| Parameter |
| Name |
Description |
prototype |
Price
|
public static Price parseDelimitedFrom(InputStream input)
| Returns |
| Type |
Description |
Price |
|
public static Price parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
| Returns |
| Type |
Description |
Price |
|
parseFrom(byte[] data)
public static Price parseFrom(byte[] data)
| Parameter |
| Name |
Description |
data |
byte[]
|
| Returns |
| Type |
Description |
Price |
|
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static Price parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
| Returns |
| Type |
Description |
Price |
|
parseFrom(ByteString data)
public static Price parseFrom(ByteString data)
| Returns |
| Type |
Description |
Price |
|
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static Price parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
| Returns |
| Type |
Description |
Price |
|
public static Price parseFrom(CodedInputStream input)
| Returns |
| Type |
Description |
Price |
|
public static Price parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
| Returns |
| Type |
Description |
Price |
|
public static Price parseFrom(InputStream input)
| Returns |
| Type |
Description |
Price |
|
public static Price parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
| Returns |
| Type |
Description |
Price |
|
parseFrom(ByteBuffer data)
public static Price parseFrom(ByteBuffer data)
| Returns |
| Type |
Description |
Price |
|
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static Price parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
| Returns |
| Type |
Description |
Price |
|
parser()
public static Parser<Price> parser()
Methods
equals(Object obj)
public boolean equals(Object obj)
| Parameter |
| Name |
Description |
obj |
Object
|
Overrides
getBasePrice()
public Money getBasePrice()
Base price.
.google.type.Money base_price = 1;
| Returns |
| Type |
Description |
com.google.type.Money |
The basePrice.
|
getBasePriceOrBuilder()
public MoneyOrBuilder getBasePriceOrBuilder()
Base price.
.google.type.Money base_price = 1;
| Returns |
| Type |
Description |
com.google.type.MoneyOrBuilder |
|
getDefaultInstanceForType()
public Price getDefaultInstanceForType()
| Returns |
| Type |
Description |
Price |
|
getDiscount()
public double getDiscount()
Discount percentage, represented as decimal.
For example, a 20% discount will be represent as 0.2.
double discount = 2;
| Returns |
| Type |
Description |
double |
The discount.
|
getDiscountComponents(int index)
public DiscountComponent getDiscountComponents(int index)
Breakdown of the discount into its components.
This will be empty if there is no discount present.
repeated .google.cloud.channel.v1.DiscountComponent discount_components = 5;
| Parameter |
| Name |
Description |
index |
int
|
getDiscountComponentsCount()
public int getDiscountComponentsCount()
Breakdown of the discount into its components.
This will be empty if there is no discount present.
repeated .google.cloud.channel.v1.DiscountComponent discount_components = 5;
| Returns |
| Type |
Description |
int |
|
getDiscountComponentsList()
public List<DiscountComponent> getDiscountComponentsList()
Breakdown of the discount into its components.
This will be empty if there is no discount present.
repeated .google.cloud.channel.v1.DiscountComponent discount_components = 5;
getDiscountComponentsOrBuilder(int index)
public DiscountComponentOrBuilder getDiscountComponentsOrBuilder(int index)
Breakdown of the discount into its components.
This will be empty if there is no discount present.
repeated .google.cloud.channel.v1.DiscountComponent discount_components = 5;
| Parameter |
| Name |
Description |
index |
int
|
getDiscountComponentsOrBuilderList()
public List<? extends DiscountComponentOrBuilder> getDiscountComponentsOrBuilderList()
Breakdown of the discount into its components.
This will be empty if there is no discount present.
repeated .google.cloud.channel.v1.DiscountComponent discount_components = 5;
| Returns |
| Type |
Description |
List<? extends com.google.cloud.channel.v1.DiscountComponentOrBuilder> |
|
getEffectivePrice()
public Money getEffectivePrice()
Effective Price after applying the discounts.
.google.type.Money effective_price = 3;
| Returns |
| Type |
Description |
com.google.type.Money |
The effectivePrice.
|
getEffectivePriceOrBuilder()
public MoneyOrBuilder getEffectivePriceOrBuilder()
Effective Price after applying the discounts.
.google.type.Money effective_price = 3;
| Returns |
| Type |
Description |
com.google.type.MoneyOrBuilder |
|
getExternalPriceUri()
public String getExternalPriceUri()
Link to external price list, such as link to Google Voice rate card.
string external_price_uri = 4;
| Returns |
| Type |
Description |
String |
The externalPriceUri.
|
getExternalPriceUriBytes()
public ByteString getExternalPriceUriBytes()
Link to external price list, such as link to Google Voice rate card.
string external_price_uri = 4;
| Returns |
| Type |
Description |
ByteString |
The bytes for externalPriceUri.
|
getParserForType()
public Parser<Price> getParserForType()
Overrides
getPricePeriod()
public Period getPricePeriod()
The time period with respect to which base and effective prices are
defined.
Example: 1 month, 6 months, 1 year, etc.
.google.cloud.channel.v1.Period price_period = 6;
| Returns |
| Type |
Description |
Period |
The pricePeriod.
|
getPricePeriodOrBuilder()
public PeriodOrBuilder getPricePeriodOrBuilder()
The time period with respect to which base and effective prices are
defined.
Example: 1 month, 6 months, 1 year, etc.
.google.cloud.channel.v1.Period price_period = 6;
getSerializedSize()
public int getSerializedSize()
| Returns |
| Type |
Description |
int |
|
Overrides
hasBasePrice()
public boolean hasBasePrice()
Base price.
.google.type.Money base_price = 1;
| Returns |
| Type |
Description |
boolean |
Whether the basePrice field is set.
|
hasEffectivePrice()
public boolean hasEffectivePrice()
Effective Price after applying the discounts.
.google.type.Money effective_price = 3;
| Returns |
| Type |
Description |
boolean |
Whether the effectivePrice field is set.
|
hasPricePeriod()
public boolean hasPricePeriod()
The time period with respect to which base and effective prices are
defined.
Example: 1 month, 6 months, 1 year, etc.
.google.cloud.channel.v1.Period price_period = 6;
| Returns |
| Type |
Description |
boolean |
Whether the pricePeriod field is set.
|
hashCode()
| Returns |
| Type |
Description |
int |
|
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
Overrides
isInitialized()
public final boolean isInitialized()
Overrides
newBuilderForType()
public Price.Builder newBuilderForType()
newBuilderForType(AbstractMessage.BuilderParent parent)
protected Price.Builder newBuilderForType(AbstractMessage.BuilderParent parent)
Overrides
toBuilder()
public Price.Builder toBuilder()
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Overrides