import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3, Timestamp } from "@bufbuild/protobuf"; import { ArtworkerContact } from "./customer_pb.js"; import { Media } from "../../media/v1/media_pb.js"; import { MeasurementUnit } from "../../common/v1/unit_pb.js"; /** * @generated from enum artworker.v1.ArtworkerPreferencesJoblistView */ export declare enum ArtworkerPreferencesJoblistView { /** * @generated from enum value: JOBLIST_VIEW_UNDEFINED = 0; */ JOBLIST_VIEW_UNDEFINED = 0, /** * @generated from enum value: JOBLIST_VIEW_KANBAN = 1; */ JOBLIST_VIEW_KANBAN = 1, /** * @generated from enum value: JOBLIST_VIEW_LIST = 2; */ JOBLIST_VIEW_LIST = 2 } /** * @generated from message artworker.v1.Artworker */ export declare class Artworker extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: repeated artworker.v1.ArtworkerUser users = 4; */ users: ArtworkerUser[]; /** * @generated from field: repeated artworker.v1.ArtworkerContact contacts = 5; */ contacts: ArtworkerContact[]; /** * @generated from field: string name = 6; */ name: string; /** * @generated from field: string email = 7; */ email: string; /** * @generated from field: string phone = 8; */ phone: string; /** * @generated from field: int64 logo_media_item_id = 9; */ logoMediaItemId: bigint; /** * @generated from field: media.v1.Media logo = 10; */ logo?: Media; /** * @generated from field: artworker.v1.SettingsOpeningHours opening_hours = 11; */ openingHours?: SettingsOpeningHours; /** * @generated from field: artworker.v1.SettingsJob job = 12; */ job?: SettingsJob; /** * @generated from field: artworker.v1.UploadPage upload_page = 13; */ uploadPage?: UploadPage; /** * @generated from field: artworker.v1.ArtworkerLocation location = 14; */ location?: ArtworkerLocation; /** * @generated from field: artworker.v1.ArtworkerPreferences preferences = 15; */ preferences?: ArtworkerPreferences; /** * @generated from field: int32 contacts_count = 16; */ contactsCount: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.Artworker"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): Artworker; static fromJson(jsonValue: JsonValue, options?: Partial): Artworker; static fromJsonString(jsonString: string, options?: Partial): Artworker; static equals(a: Artworker | PlainMessage | undefined, b: Artworker | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.ArtworkerPreferencesJoblist */ export declare class ArtworkerPreferencesJoblist extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: artworker.v1.ArtworkerPreferencesJoblistView list_view = 4; */ listView: ArtworkerPreferencesJoblistView; /** * @generated from field: repeated string visible_properties = 5; */ visibleProperties: string[]; /** * @generated from field: int64 preferences_id = 6; */ preferencesId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.ArtworkerPreferencesJoblist"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ArtworkerPreferencesJoblist; static fromJson(jsonValue: JsonValue, options?: Partial): ArtworkerPreferencesJoblist; static fromJsonString(jsonString: string, options?: Partial): ArtworkerPreferencesJoblist; static equals(a: ArtworkerPreferencesJoblist | PlainMessage | undefined, b: ArtworkerPreferencesJoblist | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.ArtworkerPreferences */ export declare class ArtworkerPreferences extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: artworker.v1.ArtworkerPreferencesJoblist joblist = 4; */ joblist?: ArtworkerPreferencesJoblist; /** * @generated from field: int64 artworker_id = 6; */ artworkerId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.ArtworkerPreferences"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ArtworkerPreferences; static fromJson(jsonValue: JsonValue, options?: Partial): ArtworkerPreferences; static fromJsonString(jsonString: string, options?: Partial): ArtworkerPreferences; static equals(a: ArtworkerPreferences | PlainMessage | undefined, b: ArtworkerPreferences | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.SettingsProofing */ export declare class SettingsProofing extends Message { /** * @generated from field: string terms_of_service_url = 1; */ termsOfServiceUrl: string; /** * @generated from field: repeated string checklist = 2; */ checklist: string[]; /** * @generated from field: repeated string custom_checklist_items = 3; */ customChecklistItems: string[]; /** * @generated from field: bool allow_proof_download = 4; */ allowProofDownload: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.SettingsProofing"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SettingsProofing; static fromJson(jsonValue: JsonValue, options?: Partial): SettingsProofing; static fromJsonString(jsonString: string, options?: Partial): SettingsProofing; static equals(a: SettingsProofing | PlainMessage | undefined, b: SettingsProofing | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.SettingsOpeningHours */ export declare class SettingsOpeningHours extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: repeated artworker.v1.OpeningHours opening_hours = 4; */ openingHours: OpeningHours[]; /** * @generated from field: bool display_to_customers = 5; */ displayToCustomers: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.SettingsOpeningHours"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SettingsOpeningHours; static fromJson(jsonValue: JsonValue, options?: Partial): SettingsOpeningHours; static fromJsonString(jsonString: string, options?: Partial): SettingsOpeningHours; static equals(a: SettingsOpeningHours | PlainMessage | undefined, b: SettingsOpeningHours | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.OpeningHours */ export declare class OpeningHours extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: int32 day = 4; */ day: number; /** * @generated from field: int32 start_time_hours = 5; */ startTimeHours: number; /** * @generated from field: int32 start_time_minutes = 6; */ startTimeMinutes: number; /** * @generated from field: int32 end_time_hours = 7; */ endTimeHours: number; /** * @generated from field: int32 end_time_minutes = 8; */ endTimeMinutes: number; /** * @generated from field: bool open = 9; */ open: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.OpeningHours"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): OpeningHours; static fromJson(jsonValue: JsonValue, options?: Partial): OpeningHours; static fromJsonString(jsonString: string, options?: Partial): OpeningHours; static equals(a: OpeningHours | PlainMessage | undefined, b: OpeningHours | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.SettingsJob */ export declare class SettingsJob extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: bool send_chaser_emails = 4; */ sendChaserEmails: boolean; /** * @generated from field: common.v1.MeasurementUnit measurement_unit = 5; */ measurementUnit: MeasurementUnit; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.SettingsJob"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SettingsJob; static fromJson(jsonValue: JsonValue, options?: Partial): SettingsJob; static fromJsonString(jsonString: string, options?: Partial): SettingsJob; static equals(a: SettingsJob | PlainMessage | undefined, b: SettingsJob | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UploadPage */ export declare class UploadPage extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: int64 artworker_id = 4; */ artworkerId: bigint; /** * @generated from field: string subdomain_name = 5; */ subdomainName: string; /** * @generated from field: string background_colour = 7; */ backgroundColour: string; /** * @generated from field: int64 background_image_item_id = 8; */ backgroundImageItemId: bigint; /** * @generated from field: media.v1.Media background_image = 9; */ backgroundImage?: Media; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UploadPage"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UploadPage; static fromJson(jsonValue: JsonValue, options?: Partial): UploadPage; static fromJsonString(jsonString: string, options?: Partial): UploadPage; static equals(a: UploadPage | PlainMessage | undefined, b: UploadPage | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.ArtworkerPublicSummary */ export declare class ArtworkerPublicSummary extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: string name = 2; */ name: string; /** * @generated from field: string email = 3; */ email: string; /** * @generated from field: string phone = 4; */ phone: string; /** * @generated from field: media.v1.Media logo = 5; */ logo?: Media; /** * @generated from field: artworker.v1.UploadPage upload_page = 6; */ uploadPage?: UploadPage; /** * @generated from field: artworker.v1.SettingsOpeningHours opening_hours = 7; */ openingHours?: SettingsOpeningHours; /** * @generated from field: artworker.v1.SettingsJob job = 8; */ job?: SettingsJob; /** * @generated from field: artworker.v1.ArtworkerLocation location = 14; */ location?: ArtworkerLocation; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.ArtworkerPublicSummary"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ArtworkerPublicSummary; static fromJson(jsonValue: JsonValue, options?: Partial): ArtworkerPublicSummary; static fromJsonString(jsonString: string, options?: Partial): ArtworkerPublicSummary; static equals(a: ArtworkerPublicSummary | PlainMessage | undefined, b: ArtworkerPublicSummary | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.ArtworkerLocation */ export declare class ArtworkerLocation extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: string country_code = 4; */ countryCode: string; /** * @generated from field: string country_name = 5; */ countryName: string; /** * @generated from field: string region_code = 6; */ regionCode: string; /** * @generated from field: string region_name = 7; */ regionName: string; /** * uses https://www.iana.org/time-zones eg "Europe/London" * * @generated from field: string tz = 8; */ tz: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.ArtworkerLocation"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ArtworkerLocation; static fromJson(jsonValue: JsonValue, options?: Partial): ArtworkerLocation; static fromJsonString(jsonString: string, options?: Partial): ArtworkerLocation; static equals(a: ArtworkerLocation | PlainMessage | undefined, b: ArtworkerLocation | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.ArtworkerUser */ export declare class ArtworkerUser extends Message { /** * @generated from field: string auth0_id = 1; */ auth0Id: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.ArtworkerUser"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ArtworkerUser; static fromJson(jsonValue: JsonValue, options?: Partial): ArtworkerUser; static fromJsonString(jsonString: string, options?: Partial): ArtworkerUser; static equals(a: ArtworkerUser | PlainMessage | undefined, b: ArtworkerUser | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.CreateArtworkerRequest */ export declare class CreateArtworkerRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.CreateArtworkerRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CreateArtworkerRequest; static fromJson(jsonValue: JsonValue, options?: Partial): CreateArtworkerRequest; static fromJsonString(jsonString: string, options?: Partial): CreateArtworkerRequest; static equals(a: CreateArtworkerRequest | PlainMessage | undefined, b: CreateArtworkerRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.CreateArtworkerResponse */ export declare class CreateArtworkerResponse extends Message { /** * @generated from field: artworker.v1.Artworker artworker = 1; */ artworker?: Artworker; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.CreateArtworkerResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CreateArtworkerResponse; static fromJson(jsonValue: JsonValue, options?: Partial): CreateArtworkerResponse; static fromJsonString(jsonString: string, options?: Partial): CreateArtworkerResponse; static equals(a: CreateArtworkerResponse | PlainMessage | undefined, b: CreateArtworkerResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateArtworkerRequest */ export declare class UpdateArtworkerRequest extends Message { /** * @generated from field: artworker.v1.Artworker artworker = 1; */ artworker?: Artworker; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateArtworkerRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateArtworkerRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateArtworkerRequest; static fromJsonString(jsonString: string, options?: Partial): UpdateArtworkerRequest; static equals(a: UpdateArtworkerRequest | PlainMessage | undefined, b: UpdateArtworkerRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateArtworkerResponse */ export declare class UpdateArtworkerResponse extends Message { /** * @generated from field: artworker.v1.Artworker artworker = 1; */ artworker?: Artworker; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateArtworkerResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateArtworkerResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateArtworkerResponse; static fromJsonString(jsonString: string, options?: Partial): UpdateArtworkerResponse; static equals(a: UpdateArtworkerResponse | PlainMessage | undefined, b: UpdateArtworkerResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.AddUserToArtworkerRequest */ export declare class AddUserToArtworkerRequest extends Message { /** * @generated from field: int64 artworker_id = 1; */ artworkerId: bigint; /** * @generated from field: string auth0_id = 2; */ auth0Id: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.AddUserToArtworkerRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): AddUserToArtworkerRequest; static fromJson(jsonValue: JsonValue, options?: Partial): AddUserToArtworkerRequest; static fromJsonString(jsonString: string, options?: Partial): AddUserToArtworkerRequest; static equals(a: AddUserToArtworkerRequest | PlainMessage | undefined, b: AddUserToArtworkerRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.AddUserToArtworkerResponse */ export declare class AddUserToArtworkerResponse extends Message { /** * @generated from field: bool ok = 1; */ ok: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.AddUserToArtworkerResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): AddUserToArtworkerResponse; static fromJson(jsonValue: JsonValue, options?: Partial): AddUserToArtworkerResponse; static fromJsonString(jsonString: string, options?: Partial): AddUserToArtworkerResponse; static equals(a: AddUserToArtworkerResponse | PlainMessage | undefined, b: AddUserToArtworkerResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerByIdRequest */ export declare class GetArtworkerByIdRequest extends Message { /** * @generated from field: int64 artworker_id = 1; */ artworkerId: bigint; /** * @generated from field: artworker.v1.GetArtworkerByIdRequest.Populate populate = 2; */ populate?: GetArtworkerByIdRequest_Populate; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerByIdRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerByIdRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerByIdRequest; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerByIdRequest; static equals(a: GetArtworkerByIdRequest | PlainMessage | undefined, b: GetArtworkerByIdRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerByIdRequest.Populate */ export declare class GetArtworkerByIdRequest_Populate extends Message { /** * @generated from field: bool contacts = 1; */ contacts: boolean; /** * @generated from field: bool users = 2; */ users: boolean; /** * @generated from field: bool job = 3; */ job: boolean; /** * @generated from field: bool opening_hours = 4; */ openingHours: boolean; /** * @generated from field: bool upload_page = 5; */ uploadPage: boolean; /** * @generated from field: bool location = 6; */ location: boolean; /** * @generated from field: bool preferences = 7; */ preferences: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerByIdRequest.Populate"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerByIdRequest_Populate; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerByIdRequest_Populate; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerByIdRequest_Populate; static equals(a: GetArtworkerByIdRequest_Populate | PlainMessage | undefined, b: GetArtworkerByIdRequest_Populate | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerByIdResponse */ export declare class GetArtworkerByIdResponse extends Message { /** * @generated from field: artworker.v1.Artworker artworker = 1; */ artworker?: Artworker; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerByIdResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerByIdResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerByIdResponse; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerByIdResponse; static equals(a: GetArtworkerByIdResponse | PlainMessage | undefined, b: GetArtworkerByIdResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerByEmailRequest */ export declare class GetArtworkerByEmailRequest extends Message { /** * @generated from field: string artworker_email = 1; */ artworkerEmail: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerByEmailRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerByEmailRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerByEmailRequest; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerByEmailRequest; static equals(a: GetArtworkerByEmailRequest | PlainMessage | undefined, b: GetArtworkerByEmailRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerByEmailResponse */ export declare class GetArtworkerByEmailResponse extends Message { /** * @generated from field: artworker.v1.Artworker artworker = 1; */ artworker?: Artworker; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerByEmailResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerByEmailResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerByEmailResponse; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerByEmailResponse; static equals(a: GetArtworkerByEmailResponse | PlainMessage | undefined, b: GetArtworkerByEmailResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerPublicSummaryByIdRequest */ export declare class GetArtworkerPublicSummaryByIdRequest extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: bool include_upload_page = 2; */ includeUploadPage: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerPublicSummaryByIdRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerPublicSummaryByIdRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerPublicSummaryByIdRequest; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerPublicSummaryByIdRequest; static equals(a: GetArtworkerPublicSummaryByIdRequest | PlainMessage | undefined, b: GetArtworkerPublicSummaryByIdRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerPublicSummaryByIdResponse */ export declare class GetArtworkerPublicSummaryByIdResponse extends Message { /** * @generated from field: artworker.v1.ArtworkerPublicSummary artworker = 1; */ artworker?: ArtworkerPublicSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerPublicSummaryByIdResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerPublicSummaryByIdResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerPublicSummaryByIdResponse; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerPublicSummaryByIdResponse; static equals(a: GetArtworkerPublicSummaryByIdResponse | PlainMessage | undefined, b: GetArtworkerPublicSummaryByIdResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetApprovalChecklistRequest */ export declare class GetApprovalChecklistRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetApprovalChecklistRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetApprovalChecklistRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetApprovalChecklistRequest; static fromJsonString(jsonString: string, options?: Partial): GetApprovalChecklistRequest; static equals(a: GetApprovalChecklistRequest | PlainMessage | undefined, b: GetApprovalChecklistRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetApprovalChecklistResponse */ export declare class GetApprovalChecklistResponse extends Message { /** * @generated from field: repeated string item = 1; */ item: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetApprovalChecklistResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetApprovalChecklistResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetApprovalChecklistResponse; static fromJsonString(jsonString: string, options?: Partial): GetApprovalChecklistResponse; static equals(a: GetApprovalChecklistResponse | PlainMessage | undefined, b: GetApprovalChecklistResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetSettingsProofingRequest */ export declare class GetSettingsProofingRequest extends Message { /** * @generated from field: int64 artworker_id = 1; */ artworkerId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetSettingsProofingRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSettingsProofingRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetSettingsProofingRequest; static fromJsonString(jsonString: string, options?: Partial): GetSettingsProofingRequest; static equals(a: GetSettingsProofingRequest | PlainMessage | undefined, b: GetSettingsProofingRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetSettingsProofingResponse */ export declare class GetSettingsProofingResponse extends Message { /** * @generated from field: artworker.v1.SettingsProofing terms = 1; */ terms?: SettingsProofing; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetSettingsProofingResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSettingsProofingResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetSettingsProofingResponse; static fromJsonString(jsonString: string, options?: Partial): GetSettingsProofingResponse; static equals(a: GetSettingsProofingResponse | PlainMessage | undefined, b: GetSettingsProofingResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateSettingsProofingRequest */ export declare class UpdateSettingsProofingRequest extends Message { /** * @generated from field: artworker.v1.SettingsProofing terms = 1; */ terms?: SettingsProofing; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateSettingsProofingRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateSettingsProofingRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateSettingsProofingRequest; static fromJsonString(jsonString: string, options?: Partial): UpdateSettingsProofingRequest; static equals(a: UpdateSettingsProofingRequest | PlainMessage | undefined, b: UpdateSettingsProofingRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateSettingsProofingResponse */ export declare class UpdateSettingsProofingResponse extends Message { /** * @generated from field: artworker.v1.SettingsProofing terms = 1; */ terms?: SettingsProofing; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateSettingsProofingResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateSettingsProofingResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateSettingsProofingResponse; static fromJsonString(jsonString: string, options?: Partial): UpdateSettingsProofingResponse; static equals(a: UpdateSettingsProofingResponse | PlainMessage | undefined, b: UpdateSettingsProofingResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetJobSettingsRequest */ export declare class GetJobSettingsRequest extends Message { /** * @generated from field: int64 artworker_id = 1; */ artworkerId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetJobSettingsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetJobSettingsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetJobSettingsRequest; static fromJsonString(jsonString: string, options?: Partial): GetJobSettingsRequest; static equals(a: GetJobSettingsRequest | PlainMessage | undefined, b: GetJobSettingsRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetJobSettingsResponse */ export declare class GetJobSettingsResponse extends Message { /** * @generated from field: artworker.v1.SettingsJob job = 1; */ job?: SettingsJob; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetJobSettingsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetJobSettingsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetJobSettingsResponse; static fromJsonString(jsonString: string, options?: Partial): GetJobSettingsResponse; static equals(a: GetJobSettingsResponse | PlainMessage | undefined, b: GetJobSettingsResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateJobSettingsRequest */ export declare class UpdateJobSettingsRequest extends Message { /** * @generated from field: artworker.v1.SettingsJob job = 1; */ job?: SettingsJob; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateJobSettingsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateJobSettingsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateJobSettingsRequest; static fromJsonString(jsonString: string, options?: Partial): UpdateJobSettingsRequest; static equals(a: UpdateJobSettingsRequest | PlainMessage | undefined, b: UpdateJobSettingsRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateJobSettingsResponse */ export declare class UpdateJobSettingsResponse extends Message { /** * @generated from field: artworker.v1.SettingsJob job = 1; */ job?: SettingsJob; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateJobSettingsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateJobSettingsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateJobSettingsResponse; static fromJsonString(jsonString: string, options?: Partial): UpdateJobSettingsResponse; static equals(a: UpdateJobSettingsResponse | PlainMessage | undefined, b: UpdateJobSettingsResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetOpeningHoursRequest */ export declare class GetOpeningHoursRequest extends Message { /** * @generated from field: int64 artworker_id = 1; */ artworkerId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetOpeningHoursRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetOpeningHoursRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetOpeningHoursRequest; static fromJsonString(jsonString: string, options?: Partial): GetOpeningHoursRequest; static equals(a: GetOpeningHoursRequest | PlainMessage | undefined, b: GetOpeningHoursRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetOpeningHoursResponse */ export declare class GetOpeningHoursResponse extends Message { /** * @generated from field: artworker.v1.SettingsOpeningHours opening_hours = 1; */ openingHours?: SettingsOpeningHours; /** * @generated from field: artworker.v1.ArtworkerLocation location = 2; */ location?: ArtworkerLocation; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetOpeningHoursResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetOpeningHoursResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetOpeningHoursResponse; static fromJsonString(jsonString: string, options?: Partial): GetOpeningHoursResponse; static equals(a: GetOpeningHoursResponse | PlainMessage | undefined, b: GetOpeningHoursResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateOpeningHoursRequest */ export declare class UpdateOpeningHoursRequest extends Message { /** * @generated from field: artworker.v1.SettingsOpeningHours opening_hours = 1; */ openingHours?: SettingsOpeningHours; /** * @generated from field: artworker.v1.ArtworkerLocation location = 2; */ location?: ArtworkerLocation; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateOpeningHoursRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateOpeningHoursRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateOpeningHoursRequest; static fromJsonString(jsonString: string, options?: Partial): UpdateOpeningHoursRequest; static equals(a: UpdateOpeningHoursRequest | PlainMessage | undefined, b: UpdateOpeningHoursRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateOpeningHoursResponse */ export declare class UpdateOpeningHoursResponse extends Message { /** * @generated from field: artworker.v1.SettingsOpeningHours opening_hours = 1; */ openingHours?: SettingsOpeningHours; /** * @generated from field: artworker.v1.ArtworkerLocation location = 2; */ location?: ArtworkerLocation; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateOpeningHoursResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateOpeningHoursResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateOpeningHoursResponse; static fromJsonString(jsonString: string, options?: Partial): UpdateOpeningHoursResponse; static equals(a: UpdateOpeningHoursResponse | PlainMessage | undefined, b: UpdateOpeningHoursResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerByUploadPageNameRequest */ export declare class GetArtworkerByUploadPageNameRequest extends Message { /** * @generated from field: string subdomain_name = 1; */ subdomainName: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerByUploadPageNameRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerByUploadPageNameRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerByUploadPageNameRequest; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerByUploadPageNameRequest; static equals(a: GetArtworkerByUploadPageNameRequest | PlainMessage | undefined, b: GetArtworkerByUploadPageNameRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerByUploadPageNameResponse */ export declare class GetArtworkerByUploadPageNameResponse extends Message { /** * @generated from field: artworker.v1.ArtworkerPublicSummary artworker = 1; */ artworker?: ArtworkerPublicSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerByUploadPageNameResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerByUploadPageNameResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerByUploadPageNameResponse; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerByUploadPageNameResponse; static equals(a: GetArtworkerByUploadPageNameResponse | PlainMessage | undefined, b: GetArtworkerByUploadPageNameResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerPublicSummaryByAPIKeyRequest */ export declare class GetArtworkerPublicSummaryByAPIKeyRequest extends Message { /** * @generated from field: string api_key = 1; */ apiKey: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerPublicSummaryByAPIKeyRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerPublicSummaryByAPIKeyRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerPublicSummaryByAPIKeyRequest; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerPublicSummaryByAPIKeyRequest; static equals(a: GetArtworkerPublicSummaryByAPIKeyRequest | PlainMessage | undefined, b: GetArtworkerPublicSummaryByAPIKeyRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetArtworkerPublicSummaryByAPIKeyResponse */ export declare class GetArtworkerPublicSummaryByAPIKeyResponse extends Message { /** * @generated from field: artworker.v1.ArtworkerPublicSummary artworker = 1; */ artworker?: ArtworkerPublicSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetArtworkerPublicSummaryByAPIKeyResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetArtworkerPublicSummaryByAPIKeyResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetArtworkerPublicSummaryByAPIKeyResponse; static fromJsonString(jsonString: string, options?: Partial): GetArtworkerPublicSummaryByAPIKeyResponse; static equals(a: GetArtworkerPublicSummaryByAPIKeyResponse | PlainMessage | undefined, b: GetArtworkerPublicSummaryByAPIKeyResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetUploadPageSettingsRequest */ export declare class GetUploadPageSettingsRequest extends Message { /** * @generated from field: int64 artworker_id = 1; */ artworkerId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetUploadPageSettingsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetUploadPageSettingsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetUploadPageSettingsRequest; static fromJsonString(jsonString: string, options?: Partial): GetUploadPageSettingsRequest; static equals(a: GetUploadPageSettingsRequest | PlainMessage | undefined, b: GetUploadPageSettingsRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.GetUploadPageSettingsResponse */ export declare class GetUploadPageSettingsResponse extends Message { /** * @generated from field: artworker.v1.UploadPage upload_page = 2; */ uploadPage?: UploadPage; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.GetUploadPageSettingsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetUploadPageSettingsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetUploadPageSettingsResponse; static fromJsonString(jsonString: string, options?: Partial): GetUploadPageSettingsResponse; static equals(a: GetUploadPageSettingsResponse | PlainMessage | undefined, b: GetUploadPageSettingsResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.CheckSubdomainAvailabilityRequest */ export declare class CheckSubdomainAvailabilityRequest extends Message { /** * @generated from field: string subdomain_name = 1; */ subdomainName: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.CheckSubdomainAvailabilityRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CheckSubdomainAvailabilityRequest; static fromJson(jsonValue: JsonValue, options?: Partial): CheckSubdomainAvailabilityRequest; static fromJsonString(jsonString: string, options?: Partial): CheckSubdomainAvailabilityRequest; static equals(a: CheckSubdomainAvailabilityRequest | PlainMessage | undefined, b: CheckSubdomainAvailabilityRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.CheckSubdomainAvailabilityResponse */ export declare class CheckSubdomainAvailabilityResponse extends Message { /** * @generated from field: bool available = 1; */ available: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.CheckSubdomainAvailabilityResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CheckSubdomainAvailabilityResponse; static fromJson(jsonValue: JsonValue, options?: Partial): CheckSubdomainAvailabilityResponse; static fromJsonString(jsonString: string, options?: Partial): CheckSubdomainAvailabilityResponse; static equals(a: CheckSubdomainAvailabilityResponse | PlainMessage | undefined, b: CheckSubdomainAvailabilityResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateUploadPageSettingsRequest */ export declare class UpdateUploadPageSettingsRequest extends Message { /** * @generated from field: int64 artworker_id = 1; */ artworkerId: bigint; /** * @generated from field: artworker.v1.UploadPage upload_page = 2; */ uploadPage?: UploadPage; /** * @generated from field: bool complete_onboarding = 3; */ completeOnboarding: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateUploadPageSettingsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateUploadPageSettingsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateUploadPageSettingsRequest; static fromJsonString(jsonString: string, options?: Partial): UpdateUploadPageSettingsRequest; static equals(a: UpdateUploadPageSettingsRequest | PlainMessage | undefined, b: UpdateUploadPageSettingsRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateUploadPageSettingsResponse */ export declare class UpdateUploadPageSettingsResponse extends Message { /** * @generated from field: artworker.v1.UploadPage upload_page = 1; */ uploadPage?: UploadPage; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateUploadPageSettingsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateUploadPageSettingsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateUploadPageSettingsResponse; static fromJsonString(jsonString: string, options?: Partial): UpdateUploadPageSettingsResponse; static equals(a: UpdateUploadPageSettingsResponse | PlainMessage | undefined, b: UpdateUploadPageSettingsResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.TrackEventRequest */ export declare class TrackEventRequest extends Message { /** * @generated from field: artworker.v1.TrackEventRequest.TrackEvent event = 1; */ event: TrackEventRequest_TrackEvent; /** * @generated from field: map params = 2; */ params: { [key: string]: string; }; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.TrackEventRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TrackEventRequest; static fromJson(jsonValue: JsonValue, options?: Partial): TrackEventRequest; static fromJsonString(jsonString: string, options?: Partial): TrackEventRequest; static equals(a: TrackEventRequest | PlainMessage | undefined, b: TrackEventRequest | PlainMessage | undefined): boolean; } /** * @generated from enum artworker.v1.TrackEventRequest.TrackEvent */ export declare enum TrackEventRequest_TrackEvent { /** * @generated from enum value: TRACK_EVENT_UNDEFINED = 0; */ UNDEFINED = 0, /** * @generated from enum value: TRACK_EVENT_REQUEST_TRIAL = 1; */ REQUEST_TRIAL = 1, /** * @generated from enum value: TRACK_EVENT_VIEW_PRICING = 2; */ VIEW_PRICING = 2 } /** * @generated from message artworker.v1.TrackEventResponse */ export declare class TrackEventResponse extends Message { /** * @generated from field: bool ok = 1; */ ok: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.TrackEventResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TrackEventResponse; static fromJson(jsonValue: JsonValue, options?: Partial): TrackEventResponse; static fromJsonString(jsonString: string, options?: Partial): TrackEventResponse; static equals(a: TrackEventResponse | PlainMessage | undefined, b: TrackEventResponse | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateArtworkerJoblistPreferencesRequest */ export declare class UpdateArtworkerJoblistPreferencesRequest extends Message { /** * @generated from field: artworker.v1.ArtworkerPreferencesJoblistView listview = 1; */ listview: ArtworkerPreferencesJoblistView; /** * @generated from field: repeated string visible_properties = 2; */ visibleProperties: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateArtworkerJoblistPreferencesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateArtworkerJoblistPreferencesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateArtworkerJoblistPreferencesRequest; static fromJsonString(jsonString: string, options?: Partial): UpdateArtworkerJoblistPreferencesRequest; static equals(a: UpdateArtworkerJoblistPreferencesRequest | PlainMessage | undefined, b: UpdateArtworkerJoblistPreferencesRequest | PlainMessage | undefined): boolean; } /** * @generated from message artworker.v1.UpdateArtworkerJoblistPreferencesResponse */ export declare class UpdateArtworkerJoblistPreferencesResponse extends Message { /** * @generated from field: artworker.v1.Artworker artworker = 1; */ artworker?: Artworker; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "artworker.v1.UpdateArtworkerJoblistPreferencesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateArtworkerJoblistPreferencesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateArtworkerJoblistPreferencesResponse; static fromJsonString(jsonString: string, options?: Partial): UpdateArtworkerJoblistPreferencesResponse; static equals(a: UpdateArtworkerJoblistPreferencesResponse | PlainMessage | undefined, b: UpdateArtworkerJoblistPreferencesResponse | PlainMessage | undefined): boolean; }