mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-07 18:21:36 +00:00
22 lines
522 B
TypeScript
Vendored
22 lines
522 B
TypeScript
Vendored
// package: google.api
|
|
// file: google/api/field_behavior.proto
|
|
|
|
import * as jspb from "google-protobuf";
|
|
import * as google_protobuf_descriptor_pb from "google-protobuf/google/protobuf/descriptor_pb";
|
|
|
|
export const fieldBehavior: jspb.ExtensionFieldInfo<FieldBehaviorMap>;
|
|
|
|
export interface FieldBehaviorMap {
|
|
FIELD_BEHAVIOR_UNSPECIFIED: 0;
|
|
OPTIONAL: 1;
|
|
REQUIRED: 2;
|
|
OUTPUT_ONLY: 3;
|
|
INPUT_ONLY: 4;
|
|
IMMUTABLE: 5;
|
|
UNORDERED_LIST: 6;
|
|
NON_EMPTY_DEFAULT: 7;
|
|
}
|
|
|
|
export const FieldBehavior: FieldBehaviorMap;
|
|
|