// package: google.protobuf // file: google/protobuf/descriptor.proto /* tslint:disable */ /* eslint-disable */ import * as jspb from "google-protobuf"; export class FileDescriptorSet extends jspb.Message { clearFileList(): void; getFileList(): Array; setFileList(value: Array): FileDescriptorSet; addFile(value?: FileDescriptorProto, index?: number): FileDescriptorProto; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): FileDescriptorSet.AsObject; static toObject(includeInstance: boolean, msg: FileDescriptorSet): FileDescriptorSet.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: FileDescriptorSet, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): FileDescriptorSet; static deserializeBinaryFromReader(message: FileDescriptorSet, reader: jspb.BinaryReader): FileDescriptorSet; } export namespace FileDescriptorSet { export type AsObject = { fileList: Array, } } export class FileDescriptorProto extends jspb.Message { hasName(): boolean; clearName(): void; getName(): string | undefined; setName(value: string): FileDescriptorProto; hasPackage(): boolean; clearPackage(): void; getPackage(): string | undefined; setPackage(value: string): FileDescriptorProto; clearDependencyList(): void; getDependencyList(): Array; setDependencyList(value: Array): FileDescriptorProto; addDependency(value: string, index?: number): string; clearPublicDependencyList(): void; getPublicDependencyList(): Array; setPublicDependencyList(value: Array): FileDescriptorProto; addPublicDependency(value: number, index?: number): number; clearWeakDependencyList(): void; getWeakDependencyList(): Array; setWeakDependencyList(value: Array): FileDescriptorProto; addWeakDependency(value: number, index?: number): number; clearMessageTypeList(): void; getMessageTypeList(): Array; setMessageTypeList(value: Array): FileDescriptorProto; addMessageType(value?: DescriptorProto, index?: number): DescriptorProto; clearEnumTypeList(): void; getEnumTypeList(): Array; setEnumTypeList(value: Array): FileDescriptorProto; addEnumType(value?: EnumDescriptorProto, index?: number): EnumDescriptorProto; clearServiceList(): void; getServiceList(): Array; setServiceList(value: Array): FileDescriptorProto; addService(value?: ServiceDescriptorProto, index?: number): ServiceDescriptorProto; clearExtensionList(): void; getExtensionList(): Array; setExtensionList(value: Array): FileDescriptorProto; addExtension$(value?: FieldDescriptorProto, index?: number): FieldDescriptorProto; hasOptions(): boolean; clearOptions(): void; getOptions(): FileOptions | undefined; setOptions(value?: FileOptions): FileDescriptorProto; hasSourceCodeInfo(): boolean; clearSourceCodeInfo(): void; getSourceCodeInfo(): SourceCodeInfo | undefined; setSourceCodeInfo(value?: SourceCodeInfo): FileDescriptorProto; hasSyntax(): boolean; clearSyntax(): void; getSyntax(): string | undefined; setSyntax(value: string): FileDescriptorProto; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): FileDescriptorProto.AsObject; static toObject(includeInstance: boolean, msg: FileDescriptorProto): FileDescriptorProto.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: FileDescriptorProto, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): FileDescriptorProto; static deserializeBinaryFromReader(message: FileDescriptorProto, reader: jspb.BinaryReader): FileDescriptorProto; } export namespace FileDescriptorProto { export type AsObject = { name?: string, pb_package?: string, dependencyList: Array, publicDependencyList: Array, weakDependencyList: Array, messageTypeList: Array, enumTypeList: Array, serviceList: Array, extensionList: Array, options?: FileOptions.AsObject, sourceCodeInfo?: SourceCodeInfo.AsObject, syntax?: string, } } export class DescriptorProto extends jspb.Message { hasName(): boolean; clearName(): void; getName(): string | undefined; setName(value: string): DescriptorProto; clearFieldList(): void; getFieldList(): Array; setFieldList(value: Array): DescriptorProto; addField(value?: FieldDescriptorProto, index?: number): FieldDescriptorProto; clearExtensionList(): void; getExtensionList(): Array; setExtensionList(value: Array): DescriptorProto; addExtension$(value?: FieldDescriptorProto, index?: number): FieldDescriptorProto; clearNestedTypeList(): void; getNestedTypeList(): Array; setNestedTypeList(value: Array): DescriptorProto; addNestedType(value?: DescriptorProto, index?: number): DescriptorProto; clearEnumTypeList(): void; getEnumTypeList(): Array; setEnumTypeList(value: Array): DescriptorProto; addEnumType(value?: EnumDescriptorProto, index?: number): EnumDescriptorProto; clearExtensionRangeList(): void; getExtensionRangeList(): Array; setExtensionRangeList(value: Array): DescriptorProto; addExtensionRange(value?: DescriptorProto.ExtensionRange, index?: number): DescriptorProto.ExtensionRange; clearOneofDeclList(): void; getOneofDeclList(): Array; setOneofDeclList(value: Array): DescriptorProto; addOneofDecl(value?: OneofDescriptorProto, index?: number): OneofDescriptorProto; hasOptions(): boolean; clearOptions(): void; getOptions(): MessageOptions | undefined; setOptions(value?: MessageOptions): DescriptorProto; clearReservedRangeList(): void; getReservedRangeList(): Array; setReservedRangeList(value: Array): DescriptorProto; addReservedRange(value?: DescriptorProto.ReservedRange, index?: number): DescriptorProto.ReservedRange; clearReservedNameList(): void; getReservedNameList(): Array; setReservedNameList(value: Array): DescriptorProto; addReservedName(value: string, index?: number): string; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): DescriptorProto.AsObject; static toObject(includeInstance: boolean, msg: DescriptorProto): DescriptorProto.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: DescriptorProto, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): DescriptorProto; static deserializeBinaryFromReader(message: DescriptorProto, reader: jspb.BinaryReader): DescriptorProto; } export namespace DescriptorProto { export type AsObject = { name?: string, fieldList: Array, extensionList: Array, nestedTypeList: Array, enumTypeList: Array, extensionRangeList: Array, oneofDeclList: Array, options?: MessageOptions.AsObject, reservedRangeList: Array, reservedNameList: Array, } export class ExtensionRange extends jspb.Message { hasStart(): boolean; clearStart(): void; getStart(): number | undefined; setStart(value: number): ExtensionRange; hasEnd(): boolean; clearEnd(): void; getEnd(): number | undefined; setEnd(value: number): ExtensionRange; hasOptions(): boolean; clearOptions(): void; getOptions(): ExtensionRangeOptions | undefined; setOptions(value?: ExtensionRangeOptions): ExtensionRange; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): ExtensionRange.AsObject; static toObject(includeInstance: boolean, msg: ExtensionRange): ExtensionRange.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: ExtensionRange, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): ExtensionRange; static deserializeBinaryFromReader(message: ExtensionRange, reader: jspb.BinaryReader): ExtensionRange; } export namespace ExtensionRange { export type AsObject = { start?: number, end?: number, options?: ExtensionRangeOptions.AsObject, } } export class ReservedRange extends jspb.Message { hasStart(): boolean; clearStart(): void; getStart(): number | undefined; setStart(value: number): ReservedRange; hasEnd(): boolean; clearEnd(): void; getEnd(): number | undefined; setEnd(value: number): ReservedRange; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): ReservedRange.AsObject; static toObject(includeInstance: boolean, msg: ReservedRange): ReservedRange.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: ReservedRange, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): ReservedRange; static deserializeBinaryFromReader(message: ReservedRange, reader: jspb.BinaryReader): ReservedRange; } export namespace ReservedRange { export type AsObject = { start?: number, end?: number, } } } export class ExtensionRangeOptions extends jspb.Message { clearUninterpretedOptionList(): void; getUninterpretedOptionList(): Array; setUninterpretedOptionList(value: Array): ExtensionRangeOptions; addUninterpretedOption(value?: UninterpretedOption, index?: number): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): ExtensionRangeOptions.AsObject; static toObject(includeInstance: boolean, msg: ExtensionRangeOptions): ExtensionRangeOptions.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: ExtensionRangeOptions, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): ExtensionRangeOptions; static deserializeBinaryFromReader(message: ExtensionRangeOptions, reader: jspb.BinaryReader): ExtensionRangeOptions; } export namespace ExtensionRangeOptions { export type AsObject = { uninterpretedOptionList: Array, } } export class FieldDescriptorProto extends jspb.Message { hasName(): boolean; clearName(): void; getName(): string | undefined; setName(value: string): FieldDescriptorProto; hasNumber(): boolean; clearNumber(): void; getNumber(): number | undefined; setNumber(value: number): FieldDescriptorProto; hasLabel(): boolean; clearLabel(): void; getLabel(): FieldDescriptorProto.Label | undefined; setLabel(value: FieldDescriptorProto.Label): FieldDescriptorProto; hasType(): boolean; clearType(): void; getType(): FieldDescriptorProto.Type | undefined; setType(value: FieldDescriptorProto.Type): FieldDescriptorProto; hasTypeName(): boolean; clearTypeName(): void; getTypeName(): string | undefined; setTypeName(value: string): FieldDescriptorProto; hasExtendee(): boolean; clearExtendee(): void; getExtendee(): string | undefined; setExtendee(value: string): FieldDescriptorProto; hasDefaultValue(): boolean; clearDefaultValue(): void; getDefaultValue(): string | undefined; setDefaultValue(value: string): FieldDescriptorProto; hasOneofIndex(): boolean; clearOneofIndex(): void; getOneofIndex(): number | undefined; setOneofIndex(value: number): FieldDescriptorProto; hasJsonName(): boolean; clearJsonName(): void; getJsonName(): string | undefined; setJsonName(value: string): FieldDescriptorProto; hasOptions(): boolean; clearOptions(): void; getOptions(): FieldOptions | undefined; setOptions(value?: FieldOptions): FieldDescriptorProto; hasProto3Optional(): boolean; clearProto3Optional(): void; getProto3Optional(): boolean | undefined; setProto3Optional(value: boolean): FieldDescriptorProto; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): FieldDescriptorProto.AsObject; static toObject(includeInstance: boolean, msg: FieldDescriptorProto): FieldDescriptorProto.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: FieldDescriptorProto, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): FieldDescriptorProto; static deserializeBinaryFromReader(message: FieldDescriptorProto, reader: jspb.BinaryReader): FieldDescriptorProto; } export namespace FieldDescriptorProto { export type AsObject = { name?: string, number?: number, label?: FieldDescriptorProto.Label, type?: FieldDescriptorProto.Type, typeName?: string, extendee?: string, defaultValue?: string, oneofIndex?: number, jsonName?: string, options?: FieldOptions.AsObject, proto3Optional?: boolean, } export enum Type { TYPE_DOUBLE = 1, TYPE_FLOAT = 2, TYPE_INT64 = 3, TYPE_UINT64 = 4, TYPE_INT32 = 5, TYPE_FIXED64 = 6, TYPE_FIXED32 = 7, TYPE_BOOL = 8, TYPE_STRING = 9, TYPE_GROUP = 10, TYPE_MESSAGE = 11, TYPE_BYTES = 12, TYPE_UINT32 = 13, TYPE_ENUM = 14, TYPE_SFIXED32 = 15, TYPE_SFIXED64 = 16, TYPE_SINT32 = 17, TYPE_SINT64 = 18, } export enum Label { LABEL_OPTIONAL = 1, LABEL_REQUIRED = 2, LABEL_REPEATED = 3, } } export class OneofDescriptorProto extends jspb.Message { hasName(): boolean; clearName(): void; getName(): string | undefined; setName(value: string): OneofDescriptorProto; hasOptions(): boolean; clearOptions(): void; getOptions(): OneofOptions | undefined; setOptions(value?: OneofOptions): OneofDescriptorProto; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): OneofDescriptorProto.AsObject; static toObject(includeInstance: boolean, msg: OneofDescriptorProto): OneofDescriptorProto.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: OneofDescriptorProto, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): OneofDescriptorProto; static deserializeBinaryFromReader(message: OneofDescriptorProto, reader: jspb.BinaryReader): OneofDescriptorProto; } export namespace OneofDescriptorProto { export type AsObject = { name?: string, options?: OneofOptions.AsObject, } } export class EnumDescriptorProto extends jspb.Message { hasName(): boolean; clearName(): void; getName(): string | undefined; setName(value: string): EnumDescriptorProto; clearValueList(): void; getValueList(): Array; setValueList(value: Array): EnumDescriptorProto; addValue(value?: EnumValueDescriptorProto, index?: number): EnumValueDescriptorProto; hasOptions(): boolean; clearOptions(): void; getOptions(): EnumOptions | undefined; setOptions(value?: EnumOptions): EnumDescriptorProto; clearReservedRangeList(): void; getReservedRangeList(): Array; setReservedRangeList(value: Array): EnumDescriptorProto; addReservedRange(value?: EnumDescriptorProto.EnumReservedRange, index?: number): EnumDescriptorProto.EnumReservedRange; clearReservedNameList(): void; getReservedNameList(): Array; setReservedNameList(value: Array): EnumDescriptorProto; addReservedName(value: string, index?: number): string; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): EnumDescriptorProto.AsObject; static toObject(includeInstance: boolean, msg: EnumDescriptorProto): EnumDescriptorProto.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: EnumDescriptorProto, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): EnumDescriptorProto; static deserializeBinaryFromReader(message: EnumDescriptorProto, reader: jspb.BinaryReader): EnumDescriptorProto; } export namespace EnumDescriptorProto { export type AsObject = { name?: string, valueList: Array, options?: EnumOptions.AsObject, reservedRangeList: Array, reservedNameList: Array, } export class EnumReservedRange extends jspb.Message { hasStart(): boolean; clearStart(): void; getStart(): number | undefined; setStart(value: number): EnumReservedRange; hasEnd(): boolean; clearEnd(): void; getEnd(): number | undefined; setEnd(value: number): EnumReservedRange; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): EnumReservedRange.AsObject; static toObject(includeInstance: boolean, msg: EnumReservedRange): EnumReservedRange.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: EnumReservedRange, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): EnumReservedRange; static deserializeBinaryFromReader(message: EnumReservedRange, reader: jspb.BinaryReader): EnumReservedRange; } export namespace EnumReservedRange { export type AsObject = { start?: number, end?: number, } } } export class EnumValueDescriptorProto extends jspb.Message { hasName(): boolean; clearName(): void; getName(): string | undefined; setName(value: string): EnumValueDescriptorProto; hasNumber(): boolean; clearNumber(): void; getNumber(): number | undefined; setNumber(value: number): EnumValueDescriptorProto; hasOptions(): boolean; clearOptions(): void; getOptions(): EnumValueOptions | undefined; setOptions(value?: EnumValueOptions): EnumValueDescriptorProto; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): EnumValueDescriptorProto.AsObject; static toObject(includeInstance: boolean, msg: EnumValueDescriptorProto): EnumValueDescriptorProto.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: EnumValueDescriptorProto, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): EnumValueDescriptorProto; static deserializeBinaryFromReader(message: EnumValueDescriptorProto, reader: jspb.BinaryReader): EnumValueDescriptorProto; } export namespace EnumValueDescriptorProto { export type AsObject = { name?: string, number?: number, options?: EnumValueOptions.AsObject, } } export class ServiceDescriptorProto extends jspb.Message { hasName(): boolean; clearName(): void; getName(): string | undefined; setName(value: string): ServiceDescriptorProto; clearMethodList(): void; getMethodList(): Array; setMethodList(value: Array): ServiceDescriptorProto; addMethod(value?: MethodDescriptorProto, index?: number): MethodDescriptorProto; hasOptions(): boolean; clearOptions(): void; getOptions(): ServiceOptions | undefined; setOptions(value?: ServiceOptions): ServiceDescriptorProto; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): ServiceDescriptorProto.AsObject; static toObject(includeInstance: boolean, msg: ServiceDescriptorProto): ServiceDescriptorProto.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: ServiceDescriptorProto, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): ServiceDescriptorProto; static deserializeBinaryFromReader(message: ServiceDescriptorProto, reader: jspb.BinaryReader): ServiceDescriptorProto; } export namespace ServiceDescriptorProto { export type AsObject = { name?: string, methodList: Array, options?: ServiceOptions.AsObject, } } export class MethodDescriptorProto extends jspb.Message { hasName(): boolean; clearName(): void; getName(): string | undefined; setName(value: string): MethodDescriptorProto; hasInputType(): boolean; clearInputType(): void; getInputType(): string | undefined; setInputType(value: string): MethodDescriptorProto; hasOutputType(): boolean; clearOutputType(): void; getOutputType(): string | undefined; setOutputType(value: string): MethodDescriptorProto; hasOptions(): boolean; clearOptions(): void; getOptions(): MethodOptions | undefined; setOptions(value?: MethodOptions): MethodDescriptorProto; hasClientStreaming(): boolean; clearClientStreaming(): void; getClientStreaming(): boolean | undefined; setClientStreaming(value: boolean): MethodDescriptorProto; hasServerStreaming(): boolean; clearServerStreaming(): void; getServerStreaming(): boolean | undefined; setServerStreaming(value: boolean): MethodDescriptorProto; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): MethodDescriptorProto.AsObject; static toObject(includeInstance: boolean, msg: MethodDescriptorProto): MethodDescriptorProto.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: MethodDescriptorProto, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): MethodDescriptorProto; static deserializeBinaryFromReader(message: MethodDescriptorProto, reader: jspb.BinaryReader): MethodDescriptorProto; } export namespace MethodDescriptorProto { export type AsObject = { name?: string, inputType?: string, outputType?: string, options?: MethodOptions.AsObject, clientStreaming?: boolean, serverStreaming?: boolean, } } export class FileOptions extends jspb.Message { hasJavaPackage(): boolean; clearJavaPackage(): void; getJavaPackage(): string | undefined; setJavaPackage(value: string): FileOptions; hasJavaOuterClassname(): boolean; clearJavaOuterClassname(): void; getJavaOuterClassname(): string | undefined; setJavaOuterClassname(value: string): FileOptions; hasJavaMultipleFiles(): boolean; clearJavaMultipleFiles(): void; getJavaMultipleFiles(): boolean | undefined; setJavaMultipleFiles(value: boolean): FileOptions; hasJavaGenerateEqualsAndHash(): boolean; clearJavaGenerateEqualsAndHash(): void; getJavaGenerateEqualsAndHash(): boolean | undefined; setJavaGenerateEqualsAndHash(value: boolean): FileOptions; hasJavaStringCheckUtf8(): boolean; clearJavaStringCheckUtf8(): void; getJavaStringCheckUtf8(): boolean | undefined; setJavaStringCheckUtf8(value: boolean): FileOptions; hasOptimizeFor(): boolean; clearOptimizeFor(): void; getOptimizeFor(): FileOptions.OptimizeMode | undefined; setOptimizeFor(value: FileOptions.OptimizeMode): FileOptions; hasGoPackage(): boolean; clearGoPackage(): void; getGoPackage(): string | undefined; setGoPackage(value: string): FileOptions; hasCcGenericServices(): boolean; clearCcGenericServices(): void; getCcGenericServices(): boolean | undefined; setCcGenericServices(value: boolean): FileOptions; hasJavaGenericServices(): boolean; clearJavaGenericServices(): void; getJavaGenericServices(): boolean | undefined; setJavaGenericServices(value: boolean): FileOptions; hasPyGenericServices(): boolean; clearPyGenericServices(): void; getPyGenericServices(): boolean | undefined; setPyGenericServices(value: boolean): FileOptions; hasPhpGenericServices(): boolean; clearPhpGenericServices(): void; getPhpGenericServices(): boolean | undefined; setPhpGenericServices(value: boolean): FileOptions; hasDeprecated(): boolean; clearDeprecated(): void; getDeprecated(): boolean | undefined; setDeprecated(value: boolean): FileOptions; hasCcEnableArenas(): boolean; clearCcEnableArenas(): void; getCcEnableArenas(): boolean | undefined; setCcEnableArenas(value: boolean): FileOptions; hasObjcClassPrefix(): boolean; clearObjcClassPrefix(): void; getObjcClassPrefix(): string | undefined; setObjcClassPrefix(value: string): FileOptions; hasCsharpNamespace(): boolean; clearCsharpNamespace(): void; getCsharpNamespace(): string | undefined; setCsharpNamespace(value: string): FileOptions; hasSwiftPrefix(): boolean; clearSwiftPrefix(): void; getSwiftPrefix(): string | undefined; setSwiftPrefix(value: string): FileOptions; hasPhpClassPrefix(): boolean; clearPhpClassPrefix(): void; getPhpClassPrefix(): string | undefined; setPhpClassPrefix(value: string): FileOptions; hasPhpNamespace(): boolean; clearPhpNamespace(): void; getPhpNamespace(): string | undefined; setPhpNamespace(value: string): FileOptions; hasPhpMetadataNamespace(): boolean; clearPhpMetadataNamespace(): void; getPhpMetadataNamespace(): string | undefined; setPhpMetadataNamespace(value: string): FileOptions; hasRubyPackage(): boolean; clearRubyPackage(): void; getRubyPackage(): string | undefined; setRubyPackage(value: string): FileOptions; clearUninterpretedOptionList(): void; getUninterpretedOptionList(): Array; setUninterpretedOptionList(value: Array): FileOptions; addUninterpretedOption(value?: UninterpretedOption, index?: number): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): FileOptions.AsObject; static toObject(includeInstance: boolean, msg: FileOptions): FileOptions.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: FileOptions, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): FileOptions; static deserializeBinaryFromReader(message: FileOptions, reader: jspb.BinaryReader): FileOptions; } export namespace FileOptions { export type AsObject = { javaPackage?: string, javaOuterClassname?: string, javaMultipleFiles?: boolean, javaGenerateEqualsAndHash?: boolean, javaStringCheckUtf8?: boolean, optimizeFor?: FileOptions.OptimizeMode, goPackage?: string, ccGenericServices?: boolean, javaGenericServices?: boolean, pyGenericServices?: boolean, phpGenericServices?: boolean, deprecated?: boolean, ccEnableArenas?: boolean, objcClassPrefix?: string, csharpNamespace?: string, swiftPrefix?: string, phpClassPrefix?: string, phpNamespace?: string, phpMetadataNamespace?: string, rubyPackage?: string, uninterpretedOptionList: Array, } export enum OptimizeMode { SPEED = 1, CODE_SIZE = 2, LITE_RUNTIME = 3, } } export class MessageOptions extends jspb.Message { hasMessageSetWireFormat(): boolean; clearMessageSetWireFormat(): void; getMessageSetWireFormat(): boolean | undefined; setMessageSetWireFormat(value: boolean): MessageOptions; hasNoStandardDescriptorAccessor(): boolean; clearNoStandardDescriptorAccessor(): void; getNoStandardDescriptorAccessor(): boolean | undefined; setNoStandardDescriptorAccessor(value: boolean): MessageOptions; hasDeprecated(): boolean; clearDeprecated(): void; getDeprecated(): boolean | undefined; setDeprecated(value: boolean): MessageOptions; hasMapEntry(): boolean; clearMapEntry(): void; getMapEntry(): boolean | undefined; setMapEntry(value: boolean): MessageOptions; clearUninterpretedOptionList(): void; getUninterpretedOptionList(): Array; setUninterpretedOptionList(value: Array): MessageOptions; addUninterpretedOption(value?: UninterpretedOption, index?: number): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): MessageOptions.AsObject; static toObject(includeInstance: boolean, msg: MessageOptions): MessageOptions.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: MessageOptions, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): MessageOptions; static deserializeBinaryFromReader(message: MessageOptions, reader: jspb.BinaryReader): MessageOptions; } export namespace MessageOptions { export type AsObject = { messageSetWireFormat?: boolean, noStandardDescriptorAccessor?: boolean, deprecated?: boolean, mapEntry?: boolean, uninterpretedOptionList: Array, } } export class FieldOptions extends jspb.Message { hasCtype(): boolean; clearCtype(): void; getCtype(): FieldOptions.CType | undefined; setCtype(value: FieldOptions.CType): FieldOptions; hasPacked(): boolean; clearPacked(): void; getPacked(): boolean | undefined; setPacked(value: boolean): FieldOptions; hasJstype(): boolean; clearJstype(): void; getJstype(): FieldOptions.JSType | undefined; setJstype(value: FieldOptions.JSType): FieldOptions; hasLazy(): boolean; clearLazy(): void; getLazy(): boolean | undefined; setLazy(value: boolean): FieldOptions; hasDeprecated(): boolean; clearDeprecated(): void; getDeprecated(): boolean | undefined; setDeprecated(value: boolean): FieldOptions; hasWeak(): boolean; clearWeak(): void; getWeak(): boolean | undefined; setWeak(value: boolean): FieldOptions; clearUninterpretedOptionList(): void; getUninterpretedOptionList(): Array; setUninterpretedOptionList(value: Array): FieldOptions; addUninterpretedOption(value?: UninterpretedOption, index?: number): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): FieldOptions.AsObject; static toObject(includeInstance: boolean, msg: FieldOptions): FieldOptions.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: FieldOptions, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): FieldOptions; static deserializeBinaryFromReader(message: FieldOptions, reader: jspb.BinaryReader): FieldOptions; } export namespace FieldOptions { export type AsObject = { ctype?: FieldOptions.CType, packed?: boolean, jstype?: FieldOptions.JSType, lazy?: boolean, deprecated?: boolean, weak?: boolean, uninterpretedOptionList: Array, } export enum CType { STRING = 0, CORD = 1, STRING_PIECE = 2, } export enum JSType { JS_NORMAL = 0, JS_STRING = 1, JS_NUMBER = 2, } } export class OneofOptions extends jspb.Message { clearUninterpretedOptionList(): void; getUninterpretedOptionList(): Array; setUninterpretedOptionList(value: Array): OneofOptions; addUninterpretedOption(value?: UninterpretedOption, index?: number): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): OneofOptions.AsObject; static toObject(includeInstance: boolean, msg: OneofOptions): OneofOptions.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: OneofOptions, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): OneofOptions; static deserializeBinaryFromReader(message: OneofOptions, reader: jspb.BinaryReader): OneofOptions; } export namespace OneofOptions { export type AsObject = { uninterpretedOptionList: Array, } } export class EnumOptions extends jspb.Message { hasAllowAlias(): boolean; clearAllowAlias(): void; getAllowAlias(): boolean | undefined; setAllowAlias(value: boolean): EnumOptions; hasDeprecated(): boolean; clearDeprecated(): void; getDeprecated(): boolean | undefined; setDeprecated(value: boolean): EnumOptions; clearUninterpretedOptionList(): void; getUninterpretedOptionList(): Array; setUninterpretedOptionList(value: Array): EnumOptions; addUninterpretedOption(value?: UninterpretedOption, index?: number): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): EnumOptions.AsObject; static toObject(includeInstance: boolean, msg: EnumOptions): EnumOptions.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: EnumOptions, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): EnumOptions; static deserializeBinaryFromReader(message: EnumOptions, reader: jspb.BinaryReader): EnumOptions; } export namespace EnumOptions { export type AsObject = { allowAlias?: boolean, deprecated?: boolean, uninterpretedOptionList: Array, } } export class EnumValueOptions extends jspb.Message { hasDeprecated(): boolean; clearDeprecated(): void; getDeprecated(): boolean | undefined; setDeprecated(value: boolean): EnumValueOptions; clearUninterpretedOptionList(): void; getUninterpretedOptionList(): Array; setUninterpretedOptionList(value: Array): EnumValueOptions; addUninterpretedOption(value?: UninterpretedOption, index?: number): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): EnumValueOptions.AsObject; static toObject(includeInstance: boolean, msg: EnumValueOptions): EnumValueOptions.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: EnumValueOptions, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): EnumValueOptions; static deserializeBinaryFromReader(message: EnumValueOptions, reader: jspb.BinaryReader): EnumValueOptions; } export namespace EnumValueOptions { export type AsObject = { deprecated?: boolean, uninterpretedOptionList: Array, } } export class ServiceOptions extends jspb.Message { hasDeprecated(): boolean; clearDeprecated(): void; getDeprecated(): boolean | undefined; setDeprecated(value: boolean): ServiceOptions; clearUninterpretedOptionList(): void; getUninterpretedOptionList(): Array; setUninterpretedOptionList(value: Array): ServiceOptions; addUninterpretedOption(value?: UninterpretedOption, index?: number): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): ServiceOptions.AsObject; static toObject(includeInstance: boolean, msg: ServiceOptions): ServiceOptions.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: ServiceOptions, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): ServiceOptions; static deserializeBinaryFromReader(message: ServiceOptions, reader: jspb.BinaryReader): ServiceOptions; } export namespace ServiceOptions { export type AsObject = { deprecated?: boolean, uninterpretedOptionList: Array, } } export class MethodOptions extends jspb.Message { hasDeprecated(): boolean; clearDeprecated(): void; getDeprecated(): boolean | undefined; setDeprecated(value: boolean): MethodOptions; hasIdempotencyLevel(): boolean; clearIdempotencyLevel(): void; getIdempotencyLevel(): MethodOptions.IdempotencyLevel | undefined; setIdempotencyLevel(value: MethodOptions.IdempotencyLevel): MethodOptions; clearUninterpretedOptionList(): void; getUninterpretedOptionList(): Array; setUninterpretedOptionList(value: Array): MethodOptions; addUninterpretedOption(value?: UninterpretedOption, index?: number): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): MethodOptions.AsObject; static toObject(includeInstance: boolean, msg: MethodOptions): MethodOptions.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: MethodOptions, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): MethodOptions; static deserializeBinaryFromReader(message: MethodOptions, reader: jspb.BinaryReader): MethodOptions; } export namespace MethodOptions { export type AsObject = { deprecated?: boolean, idempotencyLevel?: MethodOptions.IdempotencyLevel, uninterpretedOptionList: Array, } export enum IdempotencyLevel { IDEMPOTENCY_UNKNOWN = 0, NO_SIDE_EFFECTS = 1, IDEMPOTENT = 2, } } export class UninterpretedOption extends jspb.Message { clearNameList(): void; getNameList(): Array; setNameList(value: Array): UninterpretedOption; addName(value?: UninterpretedOption.NamePart, index?: number): UninterpretedOption.NamePart; hasIdentifierValue(): boolean; clearIdentifierValue(): void; getIdentifierValue(): string | undefined; setIdentifierValue(value: string): UninterpretedOption; hasPositiveIntValue(): boolean; clearPositiveIntValue(): void; getPositiveIntValue(): number | undefined; setPositiveIntValue(value: number): UninterpretedOption; hasNegativeIntValue(): boolean; clearNegativeIntValue(): void; getNegativeIntValue(): number | undefined; setNegativeIntValue(value: number): UninterpretedOption; hasDoubleValue(): boolean; clearDoubleValue(): void; getDoubleValue(): number | undefined; setDoubleValue(value: number): UninterpretedOption; hasStringValue(): boolean; clearStringValue(): void; getStringValue(): Uint8Array | string; getStringValue_asU8(): Uint8Array; getStringValue_asB64(): string; setStringValue(value: Uint8Array | string): UninterpretedOption; hasAggregateValue(): boolean; clearAggregateValue(): void; getAggregateValue(): string | undefined; setAggregateValue(value: string): UninterpretedOption; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): UninterpretedOption.AsObject; static toObject(includeInstance: boolean, msg: UninterpretedOption): UninterpretedOption.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: UninterpretedOption, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): UninterpretedOption; static deserializeBinaryFromReader(message: UninterpretedOption, reader: jspb.BinaryReader): UninterpretedOption; } export namespace UninterpretedOption { export type AsObject = { nameList: Array, identifierValue?: string, positiveIntValue?: number, negativeIntValue?: number, doubleValue?: number, stringValue: Uint8Array | string, aggregateValue?: string, } export class NamePart extends jspb.Message { hasNamePart(): boolean; clearNamePart(): void; getNamePart(): string | undefined; setNamePart(value: string): NamePart; hasIsExtension(): boolean; clearIsExtension(): void; getIsExtension(): boolean | undefined; setIsExtension(value: boolean): NamePart; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): NamePart.AsObject; static toObject(includeInstance: boolean, msg: NamePart): NamePart.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: NamePart, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): NamePart; static deserializeBinaryFromReader(message: NamePart, reader: jspb.BinaryReader): NamePart; } export namespace NamePart { export type AsObject = { namePart?: string, isExtension?: boolean, } } } export class SourceCodeInfo extends jspb.Message { clearLocationList(): void; getLocationList(): Array; setLocationList(value: Array): SourceCodeInfo; addLocation(value?: SourceCodeInfo.Location, index?: number): SourceCodeInfo.Location; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): SourceCodeInfo.AsObject; static toObject(includeInstance: boolean, msg: SourceCodeInfo): SourceCodeInfo.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: SourceCodeInfo, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): SourceCodeInfo; static deserializeBinaryFromReader(message: SourceCodeInfo, reader: jspb.BinaryReader): SourceCodeInfo; } export namespace SourceCodeInfo { export type AsObject = { locationList: Array, } export class Location extends jspb.Message { clearPathList(): void; getPathList(): Array; setPathList(value: Array): Location; addPath(value: number, index?: number): number; clearSpanList(): void; getSpanList(): Array; setSpanList(value: Array): Location; addSpan(value: number, index?: number): number; hasLeadingComments(): boolean; clearLeadingComments(): void; getLeadingComments(): string | undefined; setLeadingComments(value: string): Location; hasTrailingComments(): boolean; clearTrailingComments(): void; getTrailingComments(): string | undefined; setTrailingComments(value: string): Location; clearLeadingDetachedCommentsList(): void; getLeadingDetachedCommentsList(): Array; setLeadingDetachedCommentsList(value: Array): Location; addLeadingDetachedComments(value: string, index?: number): string; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): Location.AsObject; static toObject(includeInstance: boolean, msg: Location): Location.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: Location, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): Location; static deserializeBinaryFromReader(message: Location, reader: jspb.BinaryReader): Location; } export namespace Location { export type AsObject = { pathList: Array, spanList: Array, leadingComments?: string, trailingComments?: string, leadingDetachedCommentsList: Array, } } } export class GeneratedCodeInfo extends jspb.Message { clearAnnotationList(): void; getAnnotationList(): Array; setAnnotationList(value: Array): GeneratedCodeInfo; addAnnotation(value?: GeneratedCodeInfo.Annotation, index?: number): GeneratedCodeInfo.Annotation; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): GeneratedCodeInfo.AsObject; static toObject(includeInstance: boolean, msg: GeneratedCodeInfo): GeneratedCodeInfo.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: GeneratedCodeInfo, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): GeneratedCodeInfo; static deserializeBinaryFromReader(message: GeneratedCodeInfo, reader: jspb.BinaryReader): GeneratedCodeInfo; } export namespace GeneratedCodeInfo { export type AsObject = { annotationList: Array, } export class Annotation extends jspb.Message { clearPathList(): void; getPathList(): Array; setPathList(value: Array): Annotation; addPath(value: number, index?: number): number; hasSourceFile(): boolean; clearSourceFile(): void; getSourceFile(): string | undefined; setSourceFile(value: string): Annotation; hasBegin(): boolean; clearBegin(): void; getBegin(): number | undefined; setBegin(value: number): Annotation; hasEnd(): boolean; clearEnd(): void; getEnd(): number | undefined; setEnd(value: number): Annotation; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): Annotation.AsObject; static toObject(includeInstance: boolean, msg: Annotation): Annotation.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: Annotation, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): Annotation; static deserializeBinaryFromReader(message: Annotation, reader: jspb.BinaryReader): Annotation; } export namespace Annotation { export type AsObject = { pathList: Array, sourceFile?: string, begin?: number, end?: number, } } }