com.google.ads.googleads.v17.resources.CurrencyConstantOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v17 Show documentation
Show all versions of google-ads-stubs-v17 Show documentation
Stubs for GAAPI version google-ads-stubs-v17
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v17/resources/currency_constant.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.resources;
public interface CurrencyConstantOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.resources.CurrencyConstant)
com.google.protobuf.MessageOrBuilder {
/**
*
* Output only. The resource name of the currency constant.
* Currency constant resource names have the form:
*
* `currencyConstants/{code}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
java.lang.String getResourceName();
/**
*
* Output only. The resource name of the currency constant.
* Currency constant resource names have the form:
*
* `currencyConstants/{code}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
com.google.protobuf.ByteString
getResourceNameBytes();
/**
*
* Output only. ISO 4217 three-letter currency code, for example, "USD"
*
*
* optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the code field is set.
*/
boolean hasCode();
/**
*
* Output only. ISO 4217 three-letter currency code, for example, "USD"
*
*
* optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The code.
*/
java.lang.String getCode();
/**
*
* Output only. ISO 4217 three-letter currency code, for example, "USD"
*
*
* optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The bytes for code.
*/
com.google.protobuf.ByteString
getCodeBytes();
/**
*
* Output only. Full English name of the currency.
*
*
* optional string name = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the name field is set.
*/
boolean hasName();
/**
*
* Output only. Full English name of the currency.
*
*
* optional string name = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The name.
*/
java.lang.String getName();
/**
*
* Output only. Full English name of the currency.
*
*
* optional string name = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* Output only. Standard symbol for describing this currency, for example, '$'
* for US Dollars.
*
*
* optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the symbol field is set.
*/
boolean hasSymbol();
/**
*
* Output only. Standard symbol for describing this currency, for example, '$'
* for US Dollars.
*
*
* optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The symbol.
*/
java.lang.String getSymbol();
/**
*
* Output only. Standard symbol for describing this currency, for example, '$'
* for US Dollars.
*
*
* optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The bytes for symbol.
*/
com.google.protobuf.ByteString
getSymbolBytes();
/**
*
* Output only. The billable unit for this currency. Billed amounts should be
* multiples of this value.
*
*
* optional int64 billable_unit_micros = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the billableUnitMicros field is set.
*/
boolean hasBillableUnitMicros();
/**
*
* Output only. The billable unit for this currency. Billed amounts should be
* multiples of this value.
*
*
* optional int64 billable_unit_micros = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The billableUnitMicros.
*/
long getBillableUnitMicros();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy