// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name,keep_enum_prefix // @generated from protobuf file "user-attributes.proto" (package "api", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; import type { BinaryWriteOptions } from "@protobuf-ts/runtime"; import type { IBinaryWriter } from "@protobuf-ts/runtime"; import { WireType } from "@protobuf-ts/runtime"; import type { BinaryReadOptions } from "@protobuf-ts/runtime"; import type { IBinaryReader } from "@protobuf-ts/runtime"; import { UnknownFieldHandler } from "@protobuf-ts/runtime"; import type { PartialMessage } from "@protobuf-ts/runtime"; import { reflectionMergePartial } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime"; import { RequestProjectHeader } from "./shared"; /** * @generated from protobuf message api.UserAttribute */ export interface UserAttribute { /** * @generated from protobuf field: string ProjectID = 1 */ ProjectID: string; /** * @generated from protobuf field: string UserID = 2 */ UserID: string; /** * @generated from protobuf field: string PartnerID = 3 */ PartnerID: string; /** * @generated from protobuf field: repeated api.RestrictionActorIDs RestrictionActorIDs = 4 */ RestrictionActorIDs: RestrictionActorIDs[]; /** * @generated from protobuf field: repeated api.BookingAuthorization BookingAuthorizations = 5 */ BookingAuthorizations: BookingAuthorization[]; } /** * User Attribute Restriction Actor IDs -- related to data restriction * * @generated from protobuf message api.RestrictionActorIDs */ export interface RestrictionActorIDs { /** * @generated from protobuf field: string RestrictionID = 1 */ RestrictionID: string; /** * @generated from protobuf field: repeated string ActorIDs = 2 */ ActorIDs: string[]; } /** * @generated from protobuf message api.BookingAuthorization */ export interface BookingAuthorization { /** * @generated from protobuf field: string ActorID = 1 */ ActorID: string; // If not set, the booking permission is defined for the project itself (which in that case would be the site configured for standalone use) /** * @generated from protobuf field: api.BookingPermission LoadPermission = 2 */ LoadPermission: BookingPermission; /** * @generated from protobuf field: api.BookingPermission UnloadPermission = 3 */ UnloadPermission: BookingPermission; } /** * @generated from protobuf message api.GetUserAttributesRequest */ export interface GetUserAttributesRequest { /** * @generated from protobuf field: api.RequestProjectHeader Header = 1 */ Header?: RequestProjectHeader; /** * @generated from protobuf field: string UserID = 2 */ UserID: string; } /** * @generated from protobuf message api.GetUserAttributesResult */ export interface GetUserAttributesResult { /** * @generated from protobuf field: api.UserAttribute UserAttribute = 1 */ UserAttribute?: UserAttribute; } /** * @generated from protobuf message api.PutUserAttributesRequest */ export interface PutUserAttributesRequest { /** * @generated from protobuf field: api.RequestProjectHeader Header = 1 */ Header?: RequestProjectHeader; /** * @generated from protobuf field: string UserID = 2 */ UserID: string; /** * @generated from protobuf field: string PartnerID = 3 */ PartnerID: string; /** * @generated from protobuf field: repeated api.RestrictionActorIDs RestrictionActorIDs = 4 */ RestrictionActorIDs: RestrictionActorIDs[]; /** * @generated from protobuf field: repeated api.BookingAuthorization BookingAuthorizations = 5 */ BookingAuthorizations: BookingAuthorization[]; } /** * @generated from protobuf message api.PutUserAttributesResult */ export interface PutUserAttributesResult { /** * @generated from protobuf field: api.UserAttribute UserAttribute = 1 */ UserAttribute?: UserAttribute; } /** * @generated from protobuf message api.DeleteUserAttributesRequest */ export interface DeleteUserAttributesRequest { /** * @generated from protobuf field: api.RequestProjectHeader Header = 1 */ Header?: RequestProjectHeader; /** * @generated from protobuf field: string UserID = 2 */ UserID: string; } /** * @generated from protobuf message api.DeleteUserAttributesResult */ export interface DeleteUserAttributesResult { } /** * @generated from protobuf message api.ListUserAttributesRequest */ export interface ListUserAttributesRequest { /** * @generated from protobuf field: api.RequestProjectHeader Header = 1 */ Header?: RequestProjectHeader; /** * @generated from protobuf field: string PartnerID = 2 */ PartnerID: string; } /** * @generated from protobuf message api.ListUserAttributesResult */ export interface ListUserAttributesResult { /** * @generated from protobuf field: repeated api.UserAttribute UserAttributes = 1 */ UserAttributes: UserAttribute[]; } /** * @generated from protobuf message api.DeleteForProjectUserAttributesRequest */ export interface DeleteForProjectUserAttributesRequest { /** * @generated from protobuf field: api.RequestProjectHeader Header = 1 */ Header?: RequestProjectHeader; } /** * @generated from protobuf message api.DeleteForProjectUserAttributesResult */ export interface DeleteForProjectUserAttributesResult { } /** * User Attribute Booking Authorization -- related to slotbooking * * @generated from protobuf enum api.BookingPermission */ export enum BookingPermission { /** * @generated from protobuf enum value: BOOKING_PERMISSION_UNKNOWN = 0; */ BOOKING_PERMISSION_UNKNOWN = 0, /** * Forbidden to book or update appointments * * @generated from protobuf enum value: BOOKING_PERMISSION_FORBIDDEN = 1; */ BOOKING_PERMISSION_FORBIDDEN = 1, /** * Allowed to book appointments (and update those he is related to) * * @generated from protobuf enum value: BOOKING_PERMISSION_BOOK = 2; */ BOOKING_PERMISSION_BOOK = 2 } // @generated message type with reflection information, may provide speed optimized methods class UserAttribute$Type extends MessageType { constructor() { super("api.UserAttribute", [ { no: 1, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/ }, { no: 2, name: "UserID", kind: "scalar", localName: "UserID", jsonName: "UserID", T: 9 /*ScalarType.STRING*/ }, { no: 3, name: "PartnerID", kind: "scalar", localName: "PartnerID", jsonName: "PartnerID", T: 9 /*ScalarType.STRING*/ }, { no: 4, name: "RestrictionActorIDs", kind: "message", localName: "RestrictionActorIDs", jsonName: "RestrictionActorIDs", repeat: 2 /*RepeatType.UNPACKED*/, T: () => RestrictionActorIDs }, { no: 5, name: "BookingAuthorizations", kind: "message", localName: "BookingAuthorizations", jsonName: "BookingAuthorizations", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BookingAuthorization } ]); } create(value?: PartialMessage): UserAttribute { const message = globalThis.Object.create((this.messagePrototype!)); message.ProjectID = ""; message.UserID = ""; message.PartnerID = ""; message.RestrictionActorIDs = []; message.BookingAuthorizations = []; if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UserAttribute): UserAttribute { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* string ProjectID */ 1: message.ProjectID = reader.string(); break; case /* string UserID */ 2: message.UserID = reader.string(); break; case /* string PartnerID */ 3: message.PartnerID = reader.string(); break; case /* repeated api.RestrictionActorIDs RestrictionActorIDs */ 4: message.RestrictionActorIDs.push(RestrictionActorIDs.internalBinaryRead(reader, reader.uint32(), options)); break; case /* repeated api.BookingAuthorization BookingAuthorizations */ 5: message.BookingAuthorizations.push(BookingAuthorization.internalBinaryRead(reader, reader.uint32(), options)); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: UserAttribute, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* string ProjectID = 1; */ if (message.ProjectID !== "") writer.tag(1, WireType.LengthDelimited).string(message.ProjectID); /* string UserID = 2; */ if (message.UserID !== "") writer.tag(2, WireType.LengthDelimited).string(message.UserID); /* string PartnerID = 3; */ if (message.PartnerID !== "") writer.tag(3, WireType.LengthDelimited).string(message.PartnerID); /* repeated api.RestrictionActorIDs RestrictionActorIDs = 4; */ for (let i = 0; i < message.RestrictionActorIDs.length; i++) RestrictionActorIDs.internalBinaryWrite(message.RestrictionActorIDs[i], writer.tag(4, WireType.LengthDelimited).fork(), options).join(); /* repeated api.BookingAuthorization BookingAuthorizations = 5; */ for (let i = 0; i < message.BookingAuthorizations.length; i++) BookingAuthorization.internalBinaryWrite(message.BookingAuthorizations[i], writer.tag(5, WireType.LengthDelimited).fork(), options).join(); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.UserAttribute */ export const UserAttribute = new UserAttribute$Type(); // @generated message type with reflection information, may provide speed optimized methods class RestrictionActorIDs$Type extends MessageType { constructor() { super("api.RestrictionActorIDs", [ { no: 1, name: "RestrictionID", kind: "scalar", localName: "RestrictionID", jsonName: "RestrictionID", T: 9 /*ScalarType.STRING*/ }, { no: 2, name: "ActorIDs", kind: "scalar", localName: "ActorIDs", jsonName: "ActorIDs", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ } ]); } create(value?: PartialMessage): RestrictionActorIDs { const message = globalThis.Object.create((this.messagePrototype!)); message.RestrictionID = ""; message.ActorIDs = []; if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RestrictionActorIDs): RestrictionActorIDs { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* string RestrictionID */ 1: message.RestrictionID = reader.string(); break; case /* repeated string ActorIDs */ 2: message.ActorIDs.push(reader.string()); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: RestrictionActorIDs, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* string RestrictionID = 1; */ if (message.RestrictionID !== "") writer.tag(1, WireType.LengthDelimited).string(message.RestrictionID); /* repeated string ActorIDs = 2; */ for (let i = 0; i < message.ActorIDs.length; i++) writer.tag(2, WireType.LengthDelimited).string(message.ActorIDs[i]); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.RestrictionActorIDs */ export const RestrictionActorIDs = new RestrictionActorIDs$Type(); // @generated message type with reflection information, may provide speed optimized methods class BookingAuthorization$Type extends MessageType { constructor() { super("api.BookingAuthorization", [ { no: 1, name: "ActorID", kind: "scalar", localName: "ActorID", jsonName: "ActorID", T: 9 /*ScalarType.STRING*/ }, { no: 2, name: "LoadPermission", kind: "enum", localName: "LoadPermission", jsonName: "LoadPermission", T: () => ["api.BookingPermission", BookingPermission] }, { no: 3, name: "UnloadPermission", kind: "enum", localName: "UnloadPermission", jsonName: "UnloadPermission", T: () => ["api.BookingPermission", BookingPermission] } ]); } create(value?: PartialMessage): BookingAuthorization { const message = globalThis.Object.create((this.messagePrototype!)); message.ActorID = ""; message.LoadPermission = 0; message.UnloadPermission = 0; if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: BookingAuthorization): BookingAuthorization { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* string ActorID */ 1: message.ActorID = reader.string(); break; case /* api.BookingPermission LoadPermission */ 2: message.LoadPermission = reader.int32(); break; case /* api.BookingPermission UnloadPermission */ 3: message.UnloadPermission = reader.int32(); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: BookingAuthorization, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* string ActorID = 1; */ if (message.ActorID !== "") writer.tag(1, WireType.LengthDelimited).string(message.ActorID); /* api.BookingPermission LoadPermission = 2; */ if (message.LoadPermission !== 0) writer.tag(2, WireType.Varint).int32(message.LoadPermission); /* api.BookingPermission UnloadPermission = 3; */ if (message.UnloadPermission !== 0) writer.tag(3, WireType.Varint).int32(message.UnloadPermission); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.BookingAuthorization */ export const BookingAuthorization = new BookingAuthorization$Type(); // @generated message type with reflection information, may provide speed optimized methods class GetUserAttributesRequest$Type extends MessageType { constructor() { super("api.GetUserAttributesRequest", [ { no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "n1validate.rules": { message: { required: true } } } }, { no: 2, name: "UserID", kind: "scalar", localName: "UserID", jsonName: "UserID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } } ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "UserID"] } } }); } create(value?: PartialMessage): GetUserAttributesRequest { const message = globalThis.Object.create((this.messagePrototype!)); message.UserID = ""; if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetUserAttributesRequest): GetUserAttributesRequest { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* api.RequestProjectHeader Header */ 1: message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header); break; case /* string UserID */ 2: message.UserID = reader.string(); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: GetUserAttributesRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* api.RequestProjectHeader Header = 1; */ if (message.Header) RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join(); /* string UserID = 2; */ if (message.UserID !== "") writer.tag(2, WireType.LengthDelimited).string(message.UserID); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.GetUserAttributesRequest */ export const GetUserAttributesRequest = new GetUserAttributesRequest$Type(); // @generated message type with reflection information, may provide speed optimized methods class GetUserAttributesResult$Type extends MessageType { constructor() { super("api.GetUserAttributesResult", [ { no: 1, name: "UserAttribute", kind: "message", localName: "UserAttribute", jsonName: "UserAttribute", T: () => UserAttribute } ]); } create(value?: PartialMessage): GetUserAttributesResult { const message = globalThis.Object.create((this.messagePrototype!)); if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetUserAttributesResult): GetUserAttributesResult { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* api.UserAttribute UserAttribute */ 1: message.UserAttribute = UserAttribute.internalBinaryRead(reader, reader.uint32(), options, message.UserAttribute); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: GetUserAttributesResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* api.UserAttribute UserAttribute = 1; */ if (message.UserAttribute) UserAttribute.internalBinaryWrite(message.UserAttribute, writer.tag(1, WireType.LengthDelimited).fork(), options).join(); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.GetUserAttributesResult */ export const GetUserAttributesResult = new GetUserAttributesResult$Type(); // @generated message type with reflection information, may provide speed optimized methods class PutUserAttributesRequest$Type extends MessageType { constructor() { super("api.PutUserAttributesRequest", [ { no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "n1validate.rules": { message: { required: true } } } }, { no: 2, name: "UserID", kind: "scalar", localName: "UserID", jsonName: "UserID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } }, { no: 3, name: "PartnerID", kind: "scalar", localName: "PartnerID", jsonName: "PartnerID", T: 9 /*ScalarType.STRING*/ }, { no: 4, name: "RestrictionActorIDs", kind: "message", localName: "RestrictionActorIDs", jsonName: "RestrictionActorIDs", repeat: 2 /*RepeatType.UNPACKED*/, T: () => RestrictionActorIDs }, { no: 5, name: "BookingAuthorizations", kind: "message", localName: "BookingAuthorizations", jsonName: "BookingAuthorizations", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BookingAuthorization } ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "UserID", "PartnerID"] } } }); } create(value?: PartialMessage): PutUserAttributesRequest { const message = globalThis.Object.create((this.messagePrototype!)); message.UserID = ""; message.PartnerID = ""; message.RestrictionActorIDs = []; message.BookingAuthorizations = []; if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PutUserAttributesRequest): PutUserAttributesRequest { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* api.RequestProjectHeader Header */ 1: message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header); break; case /* string UserID */ 2: message.UserID = reader.string(); break; case /* string PartnerID */ 3: message.PartnerID = reader.string(); break; case /* repeated api.RestrictionActorIDs RestrictionActorIDs */ 4: message.RestrictionActorIDs.push(RestrictionActorIDs.internalBinaryRead(reader, reader.uint32(), options)); break; case /* repeated api.BookingAuthorization BookingAuthorizations */ 5: message.BookingAuthorizations.push(BookingAuthorization.internalBinaryRead(reader, reader.uint32(), options)); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: PutUserAttributesRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* api.RequestProjectHeader Header = 1; */ if (message.Header) RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join(); /* string UserID = 2; */ if (message.UserID !== "") writer.tag(2, WireType.LengthDelimited).string(message.UserID); /* string PartnerID = 3; */ if (message.PartnerID !== "") writer.tag(3, WireType.LengthDelimited).string(message.PartnerID); /* repeated api.RestrictionActorIDs RestrictionActorIDs = 4; */ for (let i = 0; i < message.RestrictionActorIDs.length; i++) RestrictionActorIDs.internalBinaryWrite(message.RestrictionActorIDs[i], writer.tag(4, WireType.LengthDelimited).fork(), options).join(); /* repeated api.BookingAuthorization BookingAuthorizations = 5; */ for (let i = 0; i < message.BookingAuthorizations.length; i++) BookingAuthorization.internalBinaryWrite(message.BookingAuthorizations[i], writer.tag(5, WireType.LengthDelimited).fork(), options).join(); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.PutUserAttributesRequest */ export const PutUserAttributesRequest = new PutUserAttributesRequest$Type(); // @generated message type with reflection information, may provide speed optimized methods class PutUserAttributesResult$Type extends MessageType { constructor() { super("api.PutUserAttributesResult", [ { no: 1, name: "UserAttribute", kind: "message", localName: "UserAttribute", jsonName: "UserAttribute", T: () => UserAttribute } ]); } create(value?: PartialMessage): PutUserAttributesResult { const message = globalThis.Object.create((this.messagePrototype!)); if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PutUserAttributesResult): PutUserAttributesResult { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* api.UserAttribute UserAttribute */ 1: message.UserAttribute = UserAttribute.internalBinaryRead(reader, reader.uint32(), options, message.UserAttribute); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: PutUserAttributesResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* api.UserAttribute UserAttribute = 1; */ if (message.UserAttribute) UserAttribute.internalBinaryWrite(message.UserAttribute, writer.tag(1, WireType.LengthDelimited).fork(), options).join(); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.PutUserAttributesResult */ export const PutUserAttributesResult = new PutUserAttributesResult$Type(); // @generated message type with reflection information, may provide speed optimized methods class DeleteUserAttributesRequest$Type extends MessageType { constructor() { super("api.DeleteUserAttributesRequest", [ { no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "n1validate.rules": { message: { required: true } } } }, { no: 2, name: "UserID", kind: "scalar", localName: "UserID", jsonName: "UserID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } } ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "UserID"] } } }); } create(value?: PartialMessage): DeleteUserAttributesRequest { const message = globalThis.Object.create((this.messagePrototype!)); message.UserID = ""; if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteUserAttributesRequest): DeleteUserAttributesRequest { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* api.RequestProjectHeader Header */ 1: message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header); break; case /* string UserID */ 2: message.UserID = reader.string(); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: DeleteUserAttributesRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* api.RequestProjectHeader Header = 1; */ if (message.Header) RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join(); /* string UserID = 2; */ if (message.UserID !== "") writer.tag(2, WireType.LengthDelimited).string(message.UserID); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.DeleteUserAttributesRequest */ export const DeleteUserAttributesRequest = new DeleteUserAttributesRequest$Type(); // @generated message type with reflection information, may provide speed optimized methods class DeleteUserAttributesResult$Type extends MessageType { constructor() { super("api.DeleteUserAttributesResult", []); } create(value?: PartialMessage): DeleteUserAttributesResult { const message = globalThis.Object.create((this.messagePrototype!)); if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteUserAttributesResult): DeleteUserAttributesResult { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: DeleteUserAttributesResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.DeleteUserAttributesResult */ export const DeleteUserAttributesResult = new DeleteUserAttributesResult$Type(); // @generated message type with reflection information, may provide speed optimized methods class ListUserAttributesRequest$Type extends MessageType { constructor() { super("api.ListUserAttributesRequest", [ { no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "n1validate.rules": { message: { required: true } } } }, { no: 2, name: "PartnerID", kind: "scalar", localName: "PartnerID", jsonName: "PartnerID", T: 9 /*ScalarType.STRING*/ } ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); } create(value?: PartialMessage): ListUserAttributesRequest { const message = globalThis.Object.create((this.messagePrototype!)); message.PartnerID = ""; if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ListUserAttributesRequest): ListUserAttributesRequest { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* api.RequestProjectHeader Header */ 1: message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header); break; case /* string PartnerID */ 2: message.PartnerID = reader.string(); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: ListUserAttributesRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* api.RequestProjectHeader Header = 1; */ if (message.Header) RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join(); /* string PartnerID = 2; */ if (message.PartnerID !== "") writer.tag(2, WireType.LengthDelimited).string(message.PartnerID); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.ListUserAttributesRequest */ export const ListUserAttributesRequest = new ListUserAttributesRequest$Type(); // @generated message type with reflection information, may provide speed optimized methods class ListUserAttributesResult$Type extends MessageType { constructor() { super("api.ListUserAttributesResult", [ { no: 1, name: "UserAttributes", kind: "message", localName: "UserAttributes", jsonName: "UserAttributes", repeat: 2 /*RepeatType.UNPACKED*/, T: () => UserAttribute } ]); } create(value?: PartialMessage): ListUserAttributesResult { const message = globalThis.Object.create((this.messagePrototype!)); message.UserAttributes = []; if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ListUserAttributesResult): ListUserAttributesResult { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* repeated api.UserAttribute UserAttributes */ 1: message.UserAttributes.push(UserAttribute.internalBinaryRead(reader, reader.uint32(), options)); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: ListUserAttributesResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* repeated api.UserAttribute UserAttributes = 1; */ for (let i = 0; i < message.UserAttributes.length; i++) UserAttribute.internalBinaryWrite(message.UserAttributes[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join(); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.ListUserAttributesResult */ export const ListUserAttributesResult = new ListUserAttributesResult$Type(); // @generated message type with reflection information, may provide speed optimized methods class DeleteForProjectUserAttributesRequest$Type extends MessageType { constructor() { super("api.DeleteForProjectUserAttributesRequest", [ { no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "n1validate.rules": { message: { required: true } } } } ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); } create(value?: PartialMessage): DeleteForProjectUserAttributesRequest { const message = globalThis.Object.create((this.messagePrototype!)); if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteForProjectUserAttributesRequest): DeleteForProjectUserAttributesRequest { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* api.RequestProjectHeader Header */ 1: message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: DeleteForProjectUserAttributesRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { /* api.RequestProjectHeader Header = 1; */ if (message.Header) RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join(); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.DeleteForProjectUserAttributesRequest */ export const DeleteForProjectUserAttributesRequest = new DeleteForProjectUserAttributesRequest$Type(); // @generated message type with reflection information, may provide speed optimized methods class DeleteForProjectUserAttributesResult$Type extends MessageType { constructor() { super("api.DeleteForProjectUserAttributesResult", []); } create(value?: PartialMessage): DeleteForProjectUserAttributesResult { const message = globalThis.Object.create((this.messagePrototype!)); if (value !== undefined) reflectionMergePartial(this, message, value); return message; } internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteForProjectUserAttributesResult): DeleteForProjectUserAttributesResult { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message: DeleteForProjectUserAttributesResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message api.DeleteForProjectUserAttributesResult */ export const DeleteForProjectUserAttributesResult = new DeleteForProjectUserAttributesResult$Type(); /** * @generated ServiceType for protobuf service api.UserAttributesService */ export const UserAttributesService = new ServiceType("api.UserAttributesService", [ { name: "Get", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["User Attributes"], description: "Get" }, "api.rscType": "Project", "api.roles": "Platform.UserAttributes", "google.api.method_visibility": { restriction: "SDK" } }, I: GetUserAttributesRequest, O: GetUserAttributesResult }, { name: "Put", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["User Attributes"], description: "Update or create a UserAttribute" }, "api.rscType": "Project", "api.roles": "Platform.UserAttributes", "google.api.method_visibility": { restriction: "SDK" } }, I: PutUserAttributesRequest, O: PutUserAttributesResult }, { name: "Delete", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["User Attributes"], description: "Delete" }, "api.rscType": "Project", "api.roles": "Platform.UserAttributes", "google.api.method_visibility": { restriction: "SDK" } }, I: DeleteUserAttributesRequest, O: DeleteUserAttributesResult }, { name: "List", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["User Attributes"], description: "List" }, "api.rscType": "Project", "api.roles": "Platform.UserAttributes", "google.api.method_visibility": { restriction: "SDK" } }, I: ListUserAttributesRequest, O: ListUserAttributesResult }, { name: "DeleteForProject", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["User Attributes"], description: "DeleteForProject" }, "api.rscType": "Project", "api.roles": "Platform.UserAttributes", "google.api.method_visibility": { restriction: "SDK" } }, I: DeleteForProjectUserAttributesRequest, O: DeleteForProjectUserAttributesResult } ], { "api.k8sService": "organisation-server", "api.roleManager": true, "api.resourceManager": true });