com.google.api.PropertyOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/consumer.proto
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;
*/
java.lang.String getName();
/**
*
* The name of the property (a.k.a key).
*
*
* string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The type of this property.
*
*
* .google.api.Property.PropertyType type = 2;
*/
int getTypeValue();
/**
*
* The type of this property.
*
*
* .google.api.Property.PropertyType type = 2;
*/
com.google.api.Property.PropertyType getType();
/**
*
* The description of the property
*
*
* string description = 3;
*/
java.lang.String getDescription();
/**
*
* The description of the property
*
*
* string description = 3;
*/
com.google.protobuf.ByteString
getDescriptionBytes();
}