Latest generation

This commit is contained in:
ci core model
2026-03-05 09:14:47 +00:00
parent 2612a1d56a
commit fa28bf1825
2 changed files with 14 additions and 2 deletions

View File

@@ -384,6 +384,10 @@ export interface CheckBookingAppointmentEditableResponse {
* @generated from protobuf field: bool IsEditable = 3
*/
IsEditable: boolean;
/**
* @generated from protobuf field: bool IsForceEditable = 4
*/
IsForceEditable: boolean;
}
// @generated message type with reflection information, may provide speed optimized methods
class GetBookingSlotsRequest$Type extends MessageType<GetBookingSlotsRequest> {
@@ -1337,12 +1341,14 @@ class CheckBookingAppointmentEditableResponse$Type extends MessageType<CheckBook
constructor() {
super("api.CheckBookingAppointmentEditableResponse", [
{ no: 2, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => ResponseHeader },
{ no: 3, name: "IsEditable", kind: "scalar", localName: "IsEditable", jsonName: "IsEditable", T: 8 /*ScalarType.BOOL*/ }
{ no: 3, name: "IsEditable", kind: "scalar", localName: "IsEditable", jsonName: "IsEditable", T: 8 /*ScalarType.BOOL*/ },
{ no: 4, name: "IsForceEditable", kind: "scalar", localName: "IsForceEditable", jsonName: "IsForceEditable", T: 8 /*ScalarType.BOOL*/ }
]);
}
create(value?: PartialMessage<CheckBookingAppointmentEditableResponse>): CheckBookingAppointmentEditableResponse {
const message = globalThis.Object.create((this.messagePrototype!));
message.IsEditable = false;
message.IsForceEditable = false;
if (value !== undefined)
reflectionMergePartial<CheckBookingAppointmentEditableResponse>(this, message, value);
return message;
@@ -1358,6 +1364,9 @@ class CheckBookingAppointmentEditableResponse$Type extends MessageType<CheckBook
case /* bool IsEditable */ 3:
message.IsEditable = reader.bool();
break;
case /* bool IsForceEditable */ 4:
message.IsForceEditable = reader.bool();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -1376,6 +1385,9 @@ class CheckBookingAppointmentEditableResponse$Type extends MessageType<CheckBook
/* bool IsEditable = 3; */
if (message.IsEditable !== false)
writer.tag(3, WireType.Varint).bool(message.IsEditable);
/* bool IsForceEditable = 4; */
if (message.IsForceEditable !== false)
writer.tag(4, WireType.Varint).bool(message.IsForceEditable);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);