Package com.google.cloud.channel.v1
Interface ColumnOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Column
,Column.Builder
public interface ColumnOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getColumnId()
The unique name of the column (for example, customer_domain, channel_partner, customer_cost).com.google.protobuf.ByteString
getColumnIdBytes()
The unique name of the column (for example, customer_domain, channel_partner, customer_cost).Column.DataType
getDataType()
The type of the values for this column.int
getDataTypeValue()
The type of the values for this column.String
getDisplayName()
The column's display name.com.google.protobuf.ByteString
getDisplayNameBytes()
The column's display name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getColumnId
String getColumnId()
The unique name of the column (for example, customer_domain, channel_partner, customer_cost). You can use column IDs in [RunReportJobRequest.filter][google.cloud.channel.v1.RunReportJobRequest.filter]. To see all reports and their columns, call [CloudChannelReportsService.ListReports][google.cloud.channel.v1.CloudChannelReportsService.ListReports].
string column_id = 1;
- Returns:
- The columnId.
-
getColumnIdBytes
com.google.protobuf.ByteString getColumnIdBytes()
The unique name of the column (for example, customer_domain, channel_partner, customer_cost). You can use column IDs in [RunReportJobRequest.filter][google.cloud.channel.v1.RunReportJobRequest.filter]. To see all reports and their columns, call [CloudChannelReportsService.ListReports][google.cloud.channel.v1.CloudChannelReportsService.ListReports].
string column_id = 1;
- Returns:
- The bytes for columnId.
-
getDisplayName
String getDisplayName()
The column's display name.
string display_name = 2;
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
The column's display name.
string display_name = 2;
- Returns:
- The bytes for displayName.
-
getDataTypeValue
int getDataTypeValue()
The type of the values for this column.
.google.cloud.channel.v1.Column.DataType data_type = 3;
- Returns:
- The enum numeric value on the wire for dataType.
-
getDataType
Column.DataType getDataType()
The type of the values for this column.
.google.cloud.channel.v1.Column.DataType data_type = 3;
- Returns:
- The dataType.
-
-