com.google.api.PropertyOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/consumer.proto
// Protobuf Java Version: 3.25.3
package com.google.api;
public interface PropertyOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.Property)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the property (a.k.a key).
*
*
* string name = 1;
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the property (a.k.a key).
*
*
* string name = 1;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The type of this property.
*
*
* .google.api.Property.PropertyType type = 2;
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
*
* The type of this property.
*
*
* .google.api.Property.PropertyType type = 2;
* @return The type.
*/
com.google.api.Property.PropertyType getType();
/**
*
* The description of the property
*
*
* string description = 3;
* @return The description.
*/
java.lang.String getDescription();
/**
*
* The description of the property
*
*
* string description = 3;
* @return The bytes for description.
*/
com.google.protobuf.ByteString
getDescriptionBytes();
}