Package com.google.cloud.channel.v1
Interface BillingAccountOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BillingAccount
,BillingAccount.Builder
public interface BillingAccountOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getCreateTime()
Output only.com.google.protobuf.TimestampOrBuilder
getCreateTimeOrBuilder()
Output only.String
getCurrencyCode()
Output only.com.google.protobuf.ByteString
getCurrencyCodeBytes()
Output only.String
getDisplayName()
Display name of the billing account.com.google.protobuf.ByteString
getDisplayNameBytes()
Display name of the billing account.String
getName()
Output only.com.google.protobuf.ByteString
getNameBytes()
Output only.String
getRegionCode()
Output only.com.google.protobuf.ByteString
getRegionCodeBytes()
Output only.boolean
hasCreateTime()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Output only. Resource name of the billing account. Format: accounts/{account_id}/billingAccounts/{billing_account_id}.
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Output only. Resource name of the billing account. Format: accounts/{account_id}/billingAccounts/{billing_account_id}.
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for name.
-
getDisplayName
String getDisplayName()
Display name of the billing account.
string display_name = 2;
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
Display name of the billing account.
string display_name = 2;
- Returns:
- The bytes for displayName.
-
hasCreateTime
boolean hasCreateTime()
Output only. The time when this billing account was created.
.google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
Output only. The time when this billing account was created.
.google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Output only. The time when this billing account was created.
.google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getCurrencyCode
String getCurrencyCode()
Output only. The 3-letter currency code defined in ISO 4217.
string currency_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The currencyCode.
-
getCurrencyCodeBytes
com.google.protobuf.ByteString getCurrencyCodeBytes()
Output only. The 3-letter currency code defined in ISO 4217.
string currency_code = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for currencyCode.
-
getRegionCode
String getRegionCode()
Output only. The CLDR region code.
string region_code = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The regionCode.
-
getRegionCodeBytes
com.google.protobuf.ByteString getRegionCodeBytes()
Output only. The CLDR region code.
string region_code = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for regionCode.
-
-