// @generated by protoc-gen-es v1.10.1 with parameter "target=ts" // @generated from file artworking/v1/generalprofilerunner.proto (package artworking.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3, protoInt64, Struct } from "@bufbuild/protobuf"; import { MeasurementUnit } from "../../common/v1/unit_pb.js"; /** * @generated from message artworking.v1.GeneralProfileRunnerParams */ export class GeneralProfileRunnerParams extends Message { /** * Using google.protobuf.Struct to allow flexible key-value options * * @generated from field: google.protobuf.Struct options = 1; */ options?: Struct; /** * @generated from field: string page_range = 2; */ pageRange = ""; /** * @generated from field: repeated artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams output_filenames = 3; */ outputFilenames: GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams[] = []; /** * @generated from field: common.v1.MeasurementUnit unit = 4; */ unit = MeasurementUnit.UNKNOWN; /** * @generated from field: string process_name = 5; */ processName = ""; /** * @generated from field: int64 pdf_profile_id = 6; */ pdfProfileId = protoInt64.zero; /** * @generated from field: string profile_name = 7; */ profileName = ""; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GeneralProfileRunnerParams"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "options", kind: "message", T: Struct }, { no: 2, name: "page_range", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 3, name: "output_filenames", kind: "message", T: GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams, repeated: true }, { no: 4, name: "unit", kind: "enum", T: proto3.getEnumType(MeasurementUnit) }, { no: 5, name: "process_name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 6, name: "pdf_profile_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ }, { no: 7, name: "profile_name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GeneralProfileRunnerParams { return new GeneralProfileRunnerParams().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GeneralProfileRunnerParams { return new GeneralProfileRunnerParams().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GeneralProfileRunnerParams { return new GeneralProfileRunnerParams().fromJsonString(jsonString, options); } static equals(a: GeneralProfileRunnerParams | PlainMessage | undefined, b: GeneralProfileRunnerParams | PlainMessage | undefined): boolean { return proto3.util.equals(GeneralProfileRunnerParams, a, b); } } /** * @generated from message artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams */ export class GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams extends Message { /** * @generated from field: string output_filename = 1; */ outputFilename = ""; /** * @generated from field: string file_num = 2; */ fileNum = ""; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "output_filename", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "file_num", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams { return new GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams { return new GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams { return new GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams().fromJsonString(jsonString, options); } static equals(a: GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams | PlainMessage | undefined, b: GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams | PlainMessage | undefined): boolean { return proto3.util.equals(GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams, a, b); } }