You've already forked npm-viz-sdk
542 lines
21 KiB
TypeScript
542 lines
21 KiB
TypeScript
// @generated by protoc-gen-es v1.10.0 with parameter "target=ts"
|
|
// @generated from file viz-project-settings.proto (package vizapi, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
import { RequestProjectHeader } from "./core/shared_pb.js";
|
|
import { GetOrganisationSettingResult } from "./viz-organisation-settings_pb.js";
|
|
|
|
/**
|
|
* @generated from message vizapi.ProjectSetting
|
|
*/
|
|
export class ProjectSetting extends Message<ProjectSetting> {
|
|
/**
|
|
* @generated from field: string ProjectID = 1;
|
|
*/
|
|
ProjectID = "";
|
|
|
|
/**
|
|
* @generated from field: string Key = 2;
|
|
*/
|
|
Key = "";
|
|
|
|
/**
|
|
* @generated from field: string Value = 3;
|
|
*/
|
|
Value = "";
|
|
|
|
constructor(data?: PartialMessage<ProjectSetting>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.ProjectSetting";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "ProjectID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
{ no: 2, name: "Key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
{ no: 3, name: "Value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProjectSetting {
|
|
return new ProjectSetting().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProjectSetting {
|
|
return new ProjectSetting().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProjectSetting {
|
|
return new ProjectSetting().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: ProjectSetting | PlainMessage<ProjectSetting> | undefined, b: ProjectSetting | PlainMessage<ProjectSetting> | undefined): boolean {
|
|
return proto3.util.equals(ProjectSetting, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Key, Value pair to store
|
|
*
|
|
* @generated from message vizapi.PutProjectSettingRequest
|
|
*/
|
|
export class PutProjectSettingRequest extends Message<PutProjectSettingRequest> {
|
|
/**
|
|
* @generated from field: api.RequestProjectHeader Header = 1;
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
|
|
/**
|
|
* @generated from field: string Key = 2;
|
|
*/
|
|
Key = "";
|
|
|
|
/**
|
|
* @generated from field: string Value = 3;
|
|
*/
|
|
Value = "";
|
|
|
|
constructor(data?: PartialMessage<PutProjectSettingRequest>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.PutProjectSettingRequest";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "Header", kind: "message", T: RequestProjectHeader },
|
|
{ no: 2, name: "Key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
{ no: 3, name: "Value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PutProjectSettingRequest {
|
|
return new PutProjectSettingRequest().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PutProjectSettingRequest {
|
|
return new PutProjectSettingRequest().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PutProjectSettingRequest {
|
|
return new PutProjectSettingRequest().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: PutProjectSettingRequest | PlainMessage<PutProjectSettingRequest> | undefined, b: PutProjectSettingRequest | PlainMessage<PutProjectSettingRequest> | undefined): boolean {
|
|
return proto3.util.equals(PutProjectSettingRequest, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Key, Value pair response
|
|
*
|
|
* @generated from message vizapi.PutProjectSettingResult
|
|
*/
|
|
export class PutProjectSettingResult extends Message<PutProjectSettingResult> {
|
|
/**
|
|
* @generated from field: string Key = 1;
|
|
*/
|
|
Key = "";
|
|
|
|
/**
|
|
* @generated from field: string Value = 2;
|
|
*/
|
|
Value = "";
|
|
|
|
constructor(data?: PartialMessage<PutProjectSettingResult>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.PutProjectSettingResult";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "Key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
{ no: 2, name: "Value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PutProjectSettingResult {
|
|
return new PutProjectSettingResult().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PutProjectSettingResult {
|
|
return new PutProjectSettingResult().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PutProjectSettingResult {
|
|
return new PutProjectSettingResult().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: PutProjectSettingResult | PlainMessage<PutProjectSettingResult> | undefined, b: PutProjectSettingResult | PlainMessage<PutProjectSettingResult> | undefined): boolean {
|
|
return proto3.util.equals(PutProjectSettingResult, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Key of the project's setting to get
|
|
*
|
|
* @generated from message vizapi.GetProjectSettingRequest
|
|
*/
|
|
export class GetProjectSettingRequest extends Message<GetProjectSettingRequest> {
|
|
/**
|
|
* @generated from field: api.RequestProjectHeader Header = 1;
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
|
|
/**
|
|
* @generated from field: string Key = 2;
|
|
*/
|
|
Key = "";
|
|
|
|
constructor(data?: PartialMessage<GetProjectSettingRequest>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.GetProjectSettingRequest";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "Header", kind: "message", T: RequestProjectHeader },
|
|
{ no: 2, name: "Key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProjectSettingRequest {
|
|
return new GetProjectSettingRequest().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProjectSettingRequest {
|
|
return new GetProjectSettingRequest().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProjectSettingRequest {
|
|
return new GetProjectSettingRequest().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: GetProjectSettingRequest | PlainMessage<GetProjectSettingRequest> | undefined, b: GetProjectSettingRequest | PlainMessage<GetProjectSettingRequest> | undefined): boolean {
|
|
return proto3.util.equals(GetProjectSettingRequest, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Key, Value pair response
|
|
*
|
|
* @generated from message vizapi.GetProjectSettingResult
|
|
*/
|
|
export class GetProjectSettingResult extends Message<GetProjectSettingResult> {
|
|
/**
|
|
* @generated from field: string Key = 1;
|
|
*/
|
|
Key = "";
|
|
|
|
/**
|
|
* @generated from field: string Value = 2;
|
|
*/
|
|
Value = "";
|
|
|
|
constructor(data?: PartialMessage<GetProjectSettingResult>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.GetProjectSettingResult";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "Key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
{ no: 2, name: "Value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProjectSettingResult {
|
|
return new GetProjectSettingResult().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProjectSettingResult {
|
|
return new GetProjectSettingResult().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProjectSettingResult {
|
|
return new GetProjectSettingResult().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: GetProjectSettingResult | PlainMessage<GetProjectSettingResult> | undefined, b: GetProjectSettingResult | PlainMessage<GetProjectSettingResult> | undefined): boolean {
|
|
return proto3.util.equals(GetProjectSettingResult, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Key of the project's setting to delete
|
|
*
|
|
* @generated from message vizapi.DeleteProjectSettingRequest
|
|
*/
|
|
export class DeleteProjectSettingRequest extends Message<DeleteProjectSettingRequest> {
|
|
/**
|
|
* @generated from field: api.RequestProjectHeader Header = 1;
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
|
|
/**
|
|
* @generated from field: string Key = 2;
|
|
*/
|
|
Key = "";
|
|
|
|
constructor(data?: PartialMessage<DeleteProjectSettingRequest>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.DeleteProjectSettingRequest";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "Header", kind: "message", T: RequestProjectHeader },
|
|
{ no: 2, name: "Key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteProjectSettingRequest {
|
|
return new DeleteProjectSettingRequest().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteProjectSettingRequest {
|
|
return new DeleteProjectSettingRequest().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteProjectSettingRequest {
|
|
return new DeleteProjectSettingRequest().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: DeleteProjectSettingRequest | PlainMessage<DeleteProjectSettingRequest> | undefined, b: DeleteProjectSettingRequest | PlainMessage<DeleteProjectSettingRequest> | undefined): boolean {
|
|
return proto3.util.equals(DeleteProjectSettingRequest, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @generated from message vizapi.DeleteProjectSettingResult
|
|
*/
|
|
export class DeleteProjectSettingResult extends Message<DeleteProjectSettingResult> {
|
|
constructor(data?: PartialMessage<DeleteProjectSettingResult>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.DeleteProjectSettingResult";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteProjectSettingResult {
|
|
return new DeleteProjectSettingResult().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteProjectSettingResult {
|
|
return new DeleteProjectSettingResult().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteProjectSettingResult {
|
|
return new DeleteProjectSettingResult().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: DeleteProjectSettingResult | PlainMessage<DeleteProjectSettingResult> | undefined, b: DeleteProjectSettingResult | PlainMessage<DeleteProjectSettingResult> | undefined): boolean {
|
|
return proto3.util.equals(DeleteProjectSettingResult, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @generated from message vizapi.ListProjectSettingsRequest
|
|
*/
|
|
export class ListProjectSettingsRequest extends Message<ListProjectSettingsRequest> {
|
|
/**
|
|
* @generated from field: api.RequestProjectHeader Header = 1;
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
|
|
constructor(data?: PartialMessage<ListProjectSettingsRequest>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.ListProjectSettingsRequest";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "Header", kind: "message", T: RequestProjectHeader },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListProjectSettingsRequest {
|
|
return new ListProjectSettingsRequest().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListProjectSettingsRequest {
|
|
return new ListProjectSettingsRequest().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListProjectSettingsRequest {
|
|
return new ListProjectSettingsRequest().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: ListProjectSettingsRequest | PlainMessage<ListProjectSettingsRequest> | undefined, b: ListProjectSettingsRequest | PlainMessage<ListProjectSettingsRequest> | undefined): boolean {
|
|
return proto3.util.equals(ListProjectSettingsRequest, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* List of the project's settings
|
|
*
|
|
* @generated from message vizapi.ListProjectSettingsResult
|
|
*/
|
|
export class ListProjectSettingsResult extends Message<ListProjectSettingsResult> {
|
|
/**
|
|
* @generated from field: repeated vizapi.GetProjectSettingResult ProjectSettings = 1;
|
|
*/
|
|
ProjectSettings: GetProjectSettingResult[] = [];
|
|
|
|
constructor(data?: PartialMessage<ListProjectSettingsResult>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.ListProjectSettingsResult";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "ProjectSettings", kind: "message", T: GetProjectSettingResult, repeated: true },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListProjectSettingsResult {
|
|
return new ListProjectSettingsResult().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListProjectSettingsResult {
|
|
return new ListProjectSettingsResult().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListProjectSettingsResult {
|
|
return new ListProjectSettingsResult().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: ListProjectSettingsResult | PlainMessage<ListProjectSettingsResult> | undefined, b: ListProjectSettingsResult | PlainMessage<ListProjectSettingsResult> | undefined): boolean {
|
|
return proto3.util.equals(ListProjectSettingsResult, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @generated from message vizapi.ListProjectOrganisationSettingsRequest
|
|
*/
|
|
export class ListProjectOrganisationSettingsRequest extends Message<ListProjectOrganisationSettingsRequest> {
|
|
/**
|
|
* @generated from field: api.RequestProjectHeader Header = 1;
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
|
|
constructor(data?: PartialMessage<ListProjectOrganisationSettingsRequest>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.ListProjectOrganisationSettingsRequest";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "Header", kind: "message", T: RequestProjectHeader },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListProjectOrganisationSettingsRequest {
|
|
return new ListProjectOrganisationSettingsRequest().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListProjectOrganisationSettingsRequest {
|
|
return new ListProjectOrganisationSettingsRequest().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListProjectOrganisationSettingsRequest {
|
|
return new ListProjectOrganisationSettingsRequest().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: ListProjectOrganisationSettingsRequest | PlainMessage<ListProjectOrganisationSettingsRequest> | undefined, b: ListProjectOrganisationSettingsRequest | PlainMessage<ListProjectOrganisationSettingsRequest> | undefined): boolean {
|
|
return proto3.util.equals(ListProjectOrganisationSettingsRequest, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* List of the project's settings
|
|
*
|
|
* @generated from message vizapi.ListProjectOrganisationSettingsResult
|
|
*/
|
|
export class ListProjectOrganisationSettingsResult extends Message<ListProjectOrganisationSettingsResult> {
|
|
/**
|
|
* @generated from field: repeated vizapi.GetOrganisationSettingResult OrganisationSettings = 1;
|
|
*/
|
|
OrganisationSettings: GetOrganisationSettingResult[] = [];
|
|
|
|
constructor(data?: PartialMessage<ListProjectOrganisationSettingsResult>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.ListProjectOrganisationSettingsResult";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "OrganisationSettings", kind: "message", T: GetOrganisationSettingResult, repeated: true },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListProjectOrganisationSettingsResult {
|
|
return new ListProjectOrganisationSettingsResult().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListProjectOrganisationSettingsResult {
|
|
return new ListProjectOrganisationSettingsResult().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListProjectOrganisationSettingsResult {
|
|
return new ListProjectOrganisationSettingsResult().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: ListProjectOrganisationSettingsResult | PlainMessage<ListProjectOrganisationSettingsResult> | undefined, b: ListProjectOrganisationSettingsResult | PlainMessage<ListProjectOrganisationSettingsResult> | undefined): boolean {
|
|
return proto3.util.equals(ListProjectOrganisationSettingsResult, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @generated from message vizapi.DeleteSettingsForProjectRequest
|
|
*/
|
|
export class DeleteSettingsForProjectRequest extends Message<DeleteSettingsForProjectRequest> {
|
|
/**
|
|
* @generated from field: string ProjectID = 1;
|
|
*/
|
|
ProjectID = "";
|
|
|
|
constructor(data?: PartialMessage<DeleteSettingsForProjectRequest>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.DeleteSettingsForProjectRequest";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
{ no: 1, name: "ProjectID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteSettingsForProjectRequest {
|
|
return new DeleteSettingsForProjectRequest().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteSettingsForProjectRequest {
|
|
return new DeleteSettingsForProjectRequest().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteSettingsForProjectRequest {
|
|
return new DeleteSettingsForProjectRequest().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: DeleteSettingsForProjectRequest | PlainMessage<DeleteSettingsForProjectRequest> | undefined, b: DeleteSettingsForProjectRequest | PlainMessage<DeleteSettingsForProjectRequest> | undefined): boolean {
|
|
return proto3.util.equals(DeleteSettingsForProjectRequest, a, b);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @generated from message vizapi.DeleteSettingsForProjectResult
|
|
*/
|
|
export class DeleteSettingsForProjectResult extends Message<DeleteSettingsForProjectResult> {
|
|
constructor(data?: PartialMessage<DeleteSettingsForProjectResult>) {
|
|
super();
|
|
proto3.util.initPartial(data, this);
|
|
}
|
|
|
|
static readonly runtime: typeof proto3 = proto3;
|
|
static readonly typeName = "vizapi.DeleteSettingsForProjectResult";
|
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
]);
|
|
|
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteSettingsForProjectResult {
|
|
return new DeleteSettingsForProjectResult().fromBinary(bytes, options);
|
|
}
|
|
|
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteSettingsForProjectResult {
|
|
return new DeleteSettingsForProjectResult().fromJson(jsonValue, options);
|
|
}
|
|
|
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteSettingsForProjectResult {
|
|
return new DeleteSettingsForProjectResult().fromJsonString(jsonString, options);
|
|
}
|
|
|
|
static equals(a: DeleteSettingsForProjectResult | PlainMessage<DeleteSettingsForProjectResult> | undefined, b: DeleteSettingsForProjectResult | PlainMessage<DeleteSettingsForProjectResult> | undefined): boolean {
|
|
return proto3.util.equals(DeleteSettingsForProjectResult, a, b);
|
|
}
|
|
}
|
|
|