public interface EventInputOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getLanguageCode()
public abstract String getLanguageCode()Required. The language of this query. See Language Support for a list of the currently supported language codes. Note that queries in the same session do not necessarily need to specify the same language.
string language_code = 3;
| Type | Description |
| String | The languageCode. |
getLanguageCodeBytes()
public abstract ByteString getLanguageCodeBytes()Required. The language of this query. See Language Support for a list of the currently supported language codes. Note that queries in the same session do not necessarily need to specify the same language.
string language_code = 3;
| Type | Description |
| ByteString | The bytes for languageCode. |
getName()
public abstract String getName()Required. The unique identifier of the event.
string name = 1;
| Type | Description |
| String | The name. |
getNameBytes()
public abstract ByteString getNameBytes()Required. The unique identifier of the event.
string name = 1;
| Type | Description |
| ByteString | The bytes for name. |
getParameters()
public abstract Struct getParameters()The collection of parameters associated with the event. Depending on your protocol or client library language, this is a map, associative array, symbol table, dictionary, or JSON object composed of a collection of (MapKey, MapValue) pairs:
- MapKey type: string
- MapKey value: parameter name
- MapValue type:
- If parameter's entity type is a composite entity: map
- Else: depending on parameter value type, could be one of string, number, boolean, null, list or map
- MapValue value:
- If parameter's entity type is a composite entity: map from composite entity property names to property values
- Else: parameter value
.google.protobuf.Struct parameters = 2;
| Type | Description |
| Struct | The parameters. |
getParametersOrBuilder()
public abstract StructOrBuilder getParametersOrBuilder()The collection of parameters associated with the event. Depending on your protocol or client library language, this is a map, associative array, symbol table, dictionary, or JSON object composed of a collection of (MapKey, MapValue) pairs:
- MapKey type: string
- MapKey value: parameter name
- MapValue type:
- If parameter's entity type is a composite entity: map
- Else: depending on parameter value type, could be one of string, number, boolean, null, list or map
- MapValue value:
- If parameter's entity type is a composite entity: map from composite entity property names to property values
- Else: parameter value
.google.protobuf.Struct parameters = 2;
| Type | Description |
| StructOrBuilder |
hasParameters()
public abstract boolean hasParameters()The collection of parameters associated with the event. Depending on your protocol or client library language, this is a map, associative array, symbol table, dictionary, or JSON object composed of a collection of (MapKey, MapValue) pairs:
- MapKey type: string
- MapKey value: parameter name
- MapValue type:
- If parameter's entity type is a composite entity: map
- Else: depending on parameter value type, could be one of string, number, boolean, null, list or map
- MapValue value:
- If parameter's entity type is a composite entity: map from composite entity property names to property values
- Else: parameter value
.google.protobuf.Struct parameters = 2;
| Type | Description |
| boolean | Whether the parameters field is set. |