// @generated by protoc-gen-es v1.10.1 with parameter "target=ts" // @generated from file artworking/v1/profile-report.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, Timestamp } from "@bufbuild/protobuf"; /** * @generated from message artworking.v1.Report */ export class Report extends Message { /** * Unique identifier for the job * * @generated from field: string id = 1; */ id = ""; /** * Timestamp of when the job was created * * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * Timestamp of when the job was last updated * * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: int64 media_item_id = 4; */ mediaItemId = protoInt64.zero; /** * @generated from field: repeated artworking.v1.Entry errors = 5; */ errors: Entry[] = []; /** * @generated from field: repeated artworking.v1.Entry warnings = 6; */ warnings: Entry[] = []; /** * @generated from field: repeated artworking.v1.Entry infos = 7; */ infos: Entry[] = []; /** * @generated from field: repeated artworking.v1.FixupResult fixups = 8; */ fixups: FixupResult[] = []; /** * @generated from field: artworking.v1.DocumentData stats = 9; */ stats?: DocumentData; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.Report"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "created_at", kind: "message", T: Timestamp }, { no: 3, name: "updated_at", kind: "message", T: Timestamp }, { no: 4, name: "media_item_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ }, { no: 5, name: "errors", kind: "message", T: Entry, repeated: true }, { no: 6, name: "warnings", kind: "message", T: Entry, repeated: true }, { no: 7, name: "infos", kind: "message", T: Entry, repeated: true }, { no: 8, name: "fixups", kind: "message", T: FixupResult, repeated: true }, { no: 9, name: "stats", kind: "message", T: DocumentData }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): Report { return new Report().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): Report { return new Report().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): Report { return new Report().fromJsonString(jsonString, options); } static equals(a: Report | PlainMessage | undefined, b: Report | PlainMessage | undefined): boolean { return proto3.util.equals(Report, a, b); } } /** * @generated from message artworking.v1.DocumentData */ export class DocumentData extends Message { /** * @generated from field: int32 total_errors = 1; */ totalErrors = 0; /** * @generated from field: int32 total_warnings = 2; */ totalWarnings = 0; /** * @generated from field: int32 total_info = 3; */ totalInfo = 0; /** * @generated from field: int32 total_fixups = 4; */ totalFixups = 0; /** * @generated from field: int32 error_hits = 5; */ errorHits = 0; /** * @generated from field: int32 warning_hits = 6; */ warningHits = 0; /** * @generated from field: int32 info_hits = 7; */ infoHits = 0; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.DocumentData"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "total_errors", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, { no: 2, name: "total_warnings", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, { no: 3, name: "total_info", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, { no: 4, name: "total_fixups", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, { no: 5, name: "error_hits", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, { no: 6, name: "warning_hits", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, { no: 7, name: "info_hits", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): DocumentData { return new DocumentData().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): DocumentData { return new DocumentData().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): DocumentData { return new DocumentData().fromJsonString(jsonString, options); } static equals(a: DocumentData | PlainMessage | undefined, b: DocumentData | PlainMessage | undefined): boolean { return proto3.util.equals(DocumentData, a, b); } } /** * @generated from message artworking.v1.PageReport */ export class PageReport extends Message { /** * Unique identifier for the job * * @generated from field: string id = 1; */ id = ""; /** * Timestamp of when the job was created * * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * Timestamp of when the job was last updated * * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: int64 media_item_id = 4; */ mediaItemId = protoInt64.zero; /** * @generated from field: int32 page = 5; */ page = 0; /** * @generated from field: repeated artworking.v1.Entry errors = 6; */ errors: Entry[] = []; /** * @generated from field: repeated artworking.v1.Entry warnings = 7; */ warnings: Entry[] = []; /** * @generated from field: repeated artworking.v1.Entry infos = 8; */ infos: Entry[] = []; /** * @generated from field: artworking.v1.DocumentData stats = 9; */ stats?: DocumentData; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.PageReport"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "created_at", kind: "message", T: Timestamp }, { no: 3, name: "updated_at", kind: "message", T: Timestamp }, { no: 4, name: "media_item_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ }, { no: 5, name: "page", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, { no: 6, name: "errors", kind: "message", T: Entry, repeated: true }, { no: 7, name: "warnings", kind: "message", T: Entry, repeated: true }, { no: 8, name: "infos", kind: "message", T: Entry, repeated: true }, { no: 9, name: "stats", kind: "message", T: DocumentData }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): PageReport { return new PageReport().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): PageReport { return new PageReport().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): PageReport { return new PageReport().fromJsonString(jsonString, options); } static equals(a: PageReport | PlainMessage | undefined, b: PageReport | PlainMessage | undefined): boolean { return proto3.util.equals(PageReport, a, b); } } /** * @generated from message artworking.v1.Entry */ export class Entry extends Message { /** * @generated from field: string rule_id = 1; */ ruleId = ""; /** * @generated from field: string dict_key = 2; */ dictKey = ""; /** * @generated from field: string name = 3; */ name = ""; /** * @generated from field: string comment = 4; */ comment = ""; /** * @generated from field: string severity = 5; */ severity = ""; /** * @generated from field: repeated artworking.v1.HitDetail hits = 6; */ hits: HitDetail[] = []; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.Entry"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "rule_id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "dict_key", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 4, name: "comment", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 5, name: "severity", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 6, name: "hits", kind: "message", T: HitDetail, repeated: true }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): Entry { return new Entry().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): Entry { return new Entry().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): Entry { return new Entry().fromJsonString(jsonString, options); } static equals(a: Entry | PlainMessage | undefined, b: Entry | PlainMessage | undefined): boolean { return proto3.util.equals(Entry, a, b); } } /** * @generated from message artworking.v1.FixupResult */ export class FixupResult extends Message { /** * @generated from field: string fixup_id = 1; */ fixupId = ""; /** * @generated from field: string name = 2; */ name = ""; /** * @generated from field: string comment = 3; */ comment = ""; /** * @generated from field: int32 count = 4; */ count = 0; /** * @generated from field: string severity = 5; */ severity = ""; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.FixupResult"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "fixup_id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 3, name: "comment", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 4, name: "count", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, { no: 5, name: "severity", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): FixupResult { return new FixupResult().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): FixupResult { return new FixupResult().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): FixupResult { return new FixupResult().fromJsonString(jsonString, options); } static equals(a: FixupResult | PlainMessage | undefined, b: FixupResult | PlainMessage | undefined): boolean { return proto3.util.equals(FixupResult, a, b); } } /** * @generated from message artworking.v1.HitDetail */ export class HitDetail extends Message { /** * @generated from field: string type = 1; */ type = ""; /** * @generated from field: string page = 2; */ page = ""; /** * @generated from field: artworking.v1.BoundingBox bounds = 3; */ bounds?: BoundingBox; /** * @generated from field: optional artworking.v1.TextInfo text_info = 4; */ textInfo?: TextInfo; /** * @generated from field: optional artworking.v1.ImageInfo image_info = 5; */ imageInfo?: ImageInfo; /** * @generated from field: optional artworking.v1.GraphicsInfo graphics_info = 6; */ graphicsInfo?: GraphicsInfo; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.HitDetail"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "page", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 3, name: "bounds", kind: "message", T: BoundingBox }, { no: 4, name: "text_info", kind: "message", T: TextInfo, opt: true }, { no: 5, name: "image_info", kind: "message", T: ImageInfo, opt: true }, { no: 6, name: "graphics_info", kind: "message", T: GraphicsInfo, opt: true }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): HitDetail { return new HitDetail().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): HitDetail { return new HitDetail().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): HitDetail { return new HitDetail().fromJsonString(jsonString, options); } static equals(a: HitDetail | PlainMessage | undefined, b: HitDetail | PlainMessage | undefined): boolean { return proto3.util.equals(HitDetail, a, b); } } /** * @generated from message artworking.v1.BoundingBox */ export class BoundingBox extends Message { /** * Lower-left X * * @generated from field: string llx = 1; */ llx = ""; /** * Lower-left Y * * @generated from field: string lly = 2; */ lly = ""; /** * Upper-right X * * @generated from field: string urx = 3; */ urx = ""; /** * Upper-right Y * * @generated from field: string ury = 4; */ ury = ""; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.BoundingBox"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "llx", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "lly", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 3, name: "urx", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 4, name: "ury", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): BoundingBox { return new BoundingBox().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): BoundingBox { return new BoundingBox().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): BoundingBox { return new BoundingBox().fromJsonString(jsonString, options); } static equals(a: BoundingBox | PlainMessage | undefined, b: BoundingBox | PlainMessage | undefined): boolean { return proto3.util.equals(BoundingBox, a, b); } } /** * @generated from message artworking.v1.TextInfo */ export class TextInfo extends Message { /** * @generated from field: string font_id = 1; */ fontId = ""; /** * @generated from field: string fill_colorspace = 2; */ fillColorspace = ""; /** * @generated from field: string fill_colorant_values = 3; */ fillColorantValues = ""; /** * @generated from field: string current_font_size = 4; */ currentFontSize = ""; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.TextInfo"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "font_id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "fill_colorspace", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 3, name: "fill_colorant_values", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 4, name: "current_font_size", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): TextInfo { return new TextInfo().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): TextInfo { return new TextInfo().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): TextInfo { return new TextInfo().fromJsonString(jsonString, options); } static equals(a: TextInfo | PlainMessage | undefined, b: TextInfo | PlainMessage | undefined): boolean { return proto3.util.equals(TextInfo, a, b); } } /** * @generated from message artworking.v1.ImageInfo */ export class ImageInfo extends Message { /** * @generated from field: string image_id = 1; */ imageId = ""; /** * Vertical PPI * * @generated from field: string v_ppi = 2; */ vPpi = ""; /** * Horizontal PPI * * @generated from field: string h_ppi = 3; */ hPpi = ""; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.ImageInfo"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "image_id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "v_ppi", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 3, name: "h_ppi", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): ImageInfo { return new ImageInfo().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): ImageInfo { return new ImageInfo().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): ImageInfo { return new ImageInfo().fromJsonString(jsonString, options); } static equals(a: ImageInfo | PlainMessage | undefined, b: ImageInfo | PlainMessage | undefined): boolean { return proto3.util.equals(ImageInfo, a, b); } } /** * @generated from message artworking.v1.GraphicsInfo */ export class GraphicsInfo extends Message { /** * @generated from field: string miter_limit = 1; */ miterLimit = ""; /** * @generated from field: string stroke_adjustment = 2; */ strokeAdjustment = ""; /** * @generated from field: string flatness_tolerance = 3; */ flatnessTolerance = ""; /** * @generated from field: string smoothness_tolerance = 4; */ smoothnessTolerance = ""; /** * @generated from field: string overprint_mode = 5; */ overprintMode = ""; /** * @generated from field: string overprint_for_stroke = 6; */ overprintForStroke = ""; /** * @generated from field: string overprint_for_fill = 7; */ overprintForFill = ""; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GraphicsInfo"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "miter_limit", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "stroke_adjustment", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 3, name: "flatness_tolerance", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 4, name: "smoothness_tolerance", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 5, name: "overprint_mode", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 6, name: "overprint_for_stroke", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 7, name: "overprint_for_fill", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GraphicsInfo { return new GraphicsInfo().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GraphicsInfo { return new GraphicsInfo().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GraphicsInfo { return new GraphicsInfo().fromJsonString(jsonString, options); } static equals(a: GraphicsInfo | PlainMessage | undefined, b: GraphicsInfo | PlainMessage | undefined): boolean { return proto3.util.equals(GraphicsInfo, a, b); } } /** * Request and response messages for RPCs * * @generated from message artworking.v1.GetProfileReportRequest */ export class GetProfileReportRequest extends Message { /** * @generated from field: int64 media_item_id = 1; */ mediaItemId = protoInt64.zero; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GetProfileReportRequest"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "media_item_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GetProfileReportRequest { return new GetProfileReportRequest().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GetProfileReportRequest { return new GetProfileReportRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GetProfileReportRequest { return new GetProfileReportRequest().fromJsonString(jsonString, options); } static equals(a: GetProfileReportRequest | PlainMessage | undefined, b: GetProfileReportRequest | PlainMessage | undefined): boolean { return proto3.util.equals(GetProfileReportRequest, a, b); } } /** * @generated from message artworking.v1.GetProfileReportResponse */ export class GetProfileReportResponse extends Message { /** * @generated from field: artworking.v1.Report report = 1; */ report?: Report; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GetProfileReportResponse"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "report", kind: "message", T: Report }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GetProfileReportResponse { return new GetProfileReportResponse().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GetProfileReportResponse { return new GetProfileReportResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GetProfileReportResponse { return new GetProfileReportResponse().fromJsonString(jsonString, options); } static equals(a: GetProfileReportResponse | PlainMessage | undefined, b: GetProfileReportResponse | PlainMessage | undefined): boolean { return proto3.util.equals(GetProfileReportResponse, a, b); } } /** * @generated from message artworking.v1.GetProfilePageReportRequest */ export class GetProfilePageReportRequest extends Message { /** * @generated from field: int64 media_item_id = 1; */ mediaItemId = protoInt64.zero; /** * @generated from field: int32 page = 2; */ page = 0; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GetProfilePageReportRequest"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "media_item_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ }, { no: 2, name: "page", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GetProfilePageReportRequest { return new GetProfilePageReportRequest().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GetProfilePageReportRequest { return new GetProfilePageReportRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GetProfilePageReportRequest { return new GetProfilePageReportRequest().fromJsonString(jsonString, options); } static equals(a: GetProfilePageReportRequest | PlainMessage | undefined, b: GetProfilePageReportRequest | PlainMessage | undefined): boolean { return proto3.util.equals(GetProfilePageReportRequest, a, b); } } /** * @generated from message artworking.v1.GetProfilePageReportResponse */ export class GetProfilePageReportResponse extends Message { /** * @generated from field: artworking.v1.PageReport page_report = 1; */ pageReport?: PageReport; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GetProfilePageReportResponse"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "page_report", kind: "message", T: PageReport }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GetProfilePageReportResponse { return new GetProfilePageReportResponse().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GetProfilePageReportResponse { return new GetProfilePageReportResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GetProfilePageReportResponse { return new GetProfilePageReportResponse().fromJsonString(jsonString, options); } static equals(a: GetProfilePageReportResponse | PlainMessage | undefined, b: GetProfilePageReportResponse | PlainMessage | undefined): boolean { return proto3.util.equals(GetProfilePageReportResponse, a, b); } } /** * @generated from message artworking.v1.GetProfileReportByIDRequest */ export class GetProfileReportByIDRequest extends Message { /** * @generated from field: string id = 1; */ id = ""; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GetProfileReportByIDRequest"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GetProfileReportByIDRequest { return new GetProfileReportByIDRequest().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GetProfileReportByIDRequest { return new GetProfileReportByIDRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GetProfileReportByIDRequest { return new GetProfileReportByIDRequest().fromJsonString(jsonString, options); } static equals(a: GetProfileReportByIDRequest | PlainMessage | undefined, b: GetProfileReportByIDRequest | PlainMessage | undefined): boolean { return proto3.util.equals(GetProfileReportByIDRequest, a, b); } } /** * @generated from message artworking.v1.GetProfileReportByIDResponse */ export class GetProfileReportByIDResponse extends Message { /** * @generated from field: artworking.v1.Report report = 1; */ report?: Report; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GetProfileReportByIDResponse"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "report", kind: "message", T: Report }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GetProfileReportByIDResponse { return new GetProfileReportByIDResponse().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GetProfileReportByIDResponse { return new GetProfileReportByIDResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GetProfileReportByIDResponse { return new GetProfileReportByIDResponse().fromJsonString(jsonString, options); } static equals(a: GetProfileReportByIDResponse | PlainMessage | undefined, b: GetProfileReportByIDResponse | PlainMessage | undefined): boolean { return proto3.util.equals(GetProfileReportByIDResponse, a, b); } } /** * @generated from message artworking.v1.GetProfilePageReportByIDAndPageRequest */ export class GetProfilePageReportByIDAndPageRequest extends Message { /** * @generated from field: string id = 1; */ id = ""; /** * @generated from field: int32 page = 2; */ page = 0; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GetProfilePageReportByIDAndPageRequest"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 2, name: "page", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GetProfilePageReportByIDAndPageRequest { return new GetProfilePageReportByIDAndPageRequest().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GetProfilePageReportByIDAndPageRequest { return new GetProfilePageReportByIDAndPageRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GetProfilePageReportByIDAndPageRequest { return new GetProfilePageReportByIDAndPageRequest().fromJsonString(jsonString, options); } static equals(a: GetProfilePageReportByIDAndPageRequest | PlainMessage | undefined, b: GetProfilePageReportByIDAndPageRequest | PlainMessage | undefined): boolean { return proto3.util.equals(GetProfilePageReportByIDAndPageRequest, a, b); } } /** * @generated from message artworking.v1.GetProfilePageReportByIDAndPageResponse */ export class GetProfilePageReportByIDAndPageResponse extends Message { /** * @generated from field: artworking.v1.PageReport page_report = 1; */ pageReport?: PageReport; constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); } static readonly runtime: typeof proto3 = proto3; static readonly typeName = "artworking.v1.GetProfilePageReportByIDAndPageResponse"; static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "page_report", kind: "message", T: PageReport }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): GetProfilePageReportByIDAndPageResponse { return new GetProfilePageReportByIDAndPageResponse().fromBinary(bytes, options); } static fromJson(jsonValue: JsonValue, options?: Partial): GetProfilePageReportByIDAndPageResponse { return new GetProfilePageReportByIDAndPageResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString: string, options?: Partial): GetProfilePageReportByIDAndPageResponse { return new GetProfilePageReportByIDAndPageResponse().fromJsonString(jsonString, options); } static equals(a: GetProfilePageReportByIDAndPageResponse | PlainMessage | undefined, b: GetProfilePageReportByIDAndPageResponse | PlainMessage | undefined): boolean { return proto3.util.equals(GetProfilePageReportByIDAndPageResponse, a, b); } }