@blueid/access-proto 12.26.0 → 12.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BlueCore.proto +39 -10
- package/BlueSDK.proto +0 -7
- package/BlueSystem.proto +1 -15
- package/cjs/BlueCore_pb.d.ts +178 -1
- package/cjs/BlueCore_pb.js +69 -0
- package/cjs/BlueSDK_pb.d.ts +0 -26
- package/cjs/BlueSDK_pb.js +1 -10
- package/cjs/BlueSystem_pb.d.ts +0 -39
- package/cjs/BlueSystem_pb.js +2 -14
- package/cjs/index.d.ts +0 -1
- package/cjs/index.js +0 -1
- package/es/BlueCore_pb.d.ts +178 -1
- package/es/BlueCore_pb.js +67 -0
- package/es/BlueSDK_pb.d.ts +0 -26
- package/es/BlueSDK_pb.js +0 -12
- package/es/BlueSystem_pb.d.ts +0 -39
- package/es/BlueSystem_pb.js +0 -15
- package/es/index.d.ts +0 -1
- package/es/index.js +0 -1
- package/nanopb/BlueCore.pb.c +20 -2
- package/nanopb/BlueCore.pb.h +125 -4
- package/nanopb/BlueSDK.pb.c +0 -1
- package/nanopb/BlueSDK.pb.h +3 -16
- package/nanopb/BlueSystem.pb.c +0 -1
- package/nanopb/BlueSystem.pb.h +12 -57
- package/package.json +1 -1
- package/swift/BlueCore.pb.swift +851 -361
- package/swift/BlueLock.pb.swift +12 -12
- package/swift/BlueSDK.pb.swift +301 -332
- package/swift/BlueSystem.pb.swift +154 -198
- package/BlueNetworkCore.proto +0 -122
- package/cjs/BlueNetworkCore_pb.d.ts +0 -591
- package/cjs/BlueNetworkCore_pb.js +0 -234
- package/es/BlueNetworkCore_pb.d.ts +0 -591
- package/es/BlueNetworkCore_pb.js +0 -215
- package/nanopb/BlueNetworkCore.pb.c +0 -63
- package/nanopb/BlueNetworkCore.pb.h +0 -409
- package/swift/BlueNetworkCore.pb.swift +0 -1700
package/swift/BlueSDK.pb.swift
CHANGED
|
@@ -8,7 +8,11 @@
|
|
|
8
8
|
// For information on using the generated types, please see the documentation:
|
|
9
9
|
// https://github.com/apple/swift-protobuf/
|
|
10
10
|
|
|
11
|
+
#if canImport(FoundationEssentials)
|
|
12
|
+
import FoundationEssentials
|
|
13
|
+
#else
|
|
11
14
|
import Foundation
|
|
15
|
+
#endif
|
|
12
16
|
import SwiftProtobuf
|
|
13
17
|
|
|
14
18
|
// If the compiler emits an error on this type, it is because this file
|
|
@@ -43,670 +47,656 @@ public enum BlueRefreshOssSoCredentialStatus: Int, SwiftProtobuf.Enum, Swift.Cas
|
|
|
43
47
|
|
|
44
48
|
}
|
|
45
49
|
|
|
46
|
-
public enum BlueHardwareVendor: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
|
|
47
|
-
|
|
48
|
-
/// UUNZ
|
|
49
|
-
case uundzlocks = 0
|
|
50
|
-
|
|
51
|
-
/// DigitalLogic
|
|
52
|
-
case dlogiclock = 1
|
|
53
|
-
|
|
54
|
-
public init() {
|
|
55
|
-
self = .uundzlocks
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
|
|
60
50
|
public struct BlueI18n: @unchecked Sendable {
|
|
61
51
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
62
52
|
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
63
53
|
// methods supported on all messages.
|
|
64
54
|
|
|
65
55
|
public var nfcWaitMessage: String {
|
|
66
|
-
get {
|
|
56
|
+
get {_storage._nfcWaitMessage ?? "Waiting for transponder..."}
|
|
67
57
|
set {_uniqueStorage()._nfcWaitMessage = newValue}
|
|
68
58
|
}
|
|
69
59
|
/// Returns true if `nfcWaitMessage` has been explicitly set.
|
|
70
|
-
public var hasNfcWaitMessage: Bool {
|
|
60
|
+
public var hasNfcWaitMessage: Bool {_storage._nfcWaitMessage != nil}
|
|
71
61
|
/// Clears the value of `nfcWaitMessage`. Subsequent reads from it will return its default value.
|
|
72
62
|
public mutating func clearNfcWaitMessage() {_uniqueStorage()._nfcWaitMessage = nil}
|
|
73
63
|
|
|
74
64
|
public var nfcOssSuccessReadConfigurationMessage: String {
|
|
75
|
-
get {
|
|
65
|
+
get {_storage._nfcOssSuccessReadConfigurationMessage ?? "Credentials read successfully"}
|
|
76
66
|
set {_uniqueStorage()._nfcOssSuccessReadConfigurationMessage = newValue}
|
|
77
67
|
}
|
|
78
68
|
/// Returns true if `nfcOssSuccessReadConfigurationMessage` has been explicitly set.
|
|
79
|
-
public var hasNfcOssSuccessReadConfigurationMessage: Bool {
|
|
69
|
+
public var hasNfcOssSuccessReadConfigurationMessage: Bool {_storage._nfcOssSuccessReadConfigurationMessage != nil}
|
|
80
70
|
/// Clears the value of `nfcOssSuccessReadConfigurationMessage`. Subsequent reads from it will return its default value.
|
|
81
71
|
public mutating func clearNfcOssSuccessReadConfigurationMessage() {_uniqueStorage()._nfcOssSuccessReadConfigurationMessage = nil}
|
|
82
72
|
|
|
83
73
|
public var nfcOssSuccessUpdateConfigurationMessage: String {
|
|
84
|
-
get {
|
|
74
|
+
get {_storage._nfcOssSuccessUpdateConfigurationMessage ?? "Credentials successfully updated"}
|
|
85
75
|
set {_uniqueStorage()._nfcOssSuccessUpdateConfigurationMessage = newValue}
|
|
86
76
|
}
|
|
87
77
|
/// Returns true if `nfcOssSuccessUpdateConfigurationMessage` has been explicitly set.
|
|
88
|
-
public var hasNfcOssSuccessUpdateConfigurationMessage: Bool {
|
|
78
|
+
public var hasNfcOssSuccessUpdateConfigurationMessage: Bool {_storage._nfcOssSuccessUpdateConfigurationMessage != nil}
|
|
89
79
|
/// Clears the value of `nfcOssSuccessUpdateConfigurationMessage`. Subsequent reads from it will return its default value.
|
|
90
80
|
public mutating func clearNfcOssSuccessUpdateConfigurationMessage() {_uniqueStorage()._nfcOssSuccessUpdateConfigurationMessage = nil}
|
|
91
81
|
|
|
92
82
|
public var nfcOssSuccessClearEventsMessage: String {
|
|
93
|
-
get {
|
|
83
|
+
get {_storage._nfcOssSuccessClearEventsMessage ?? "Events successfully cleared"}
|
|
94
84
|
set {_uniqueStorage()._nfcOssSuccessClearEventsMessage = newValue}
|
|
95
85
|
}
|
|
96
86
|
/// Returns true if `nfcOssSuccessClearEventsMessage` has been explicitly set.
|
|
97
|
-
public var hasNfcOssSuccessClearEventsMessage: Bool {
|
|
87
|
+
public var hasNfcOssSuccessClearEventsMessage: Bool {_storage._nfcOssSuccessClearEventsMessage != nil}
|
|
98
88
|
/// Clears the value of `nfcOssSuccessClearEventsMessage`. Subsequent reads from it will return its default value.
|
|
99
89
|
public mutating func clearNfcOssSuccessClearEventsMessage() {_uniqueStorage()._nfcOssSuccessClearEventsMessage = nil}
|
|
100
90
|
|
|
101
91
|
public var nfcOssSuccessIsProvisionedMessage: String {
|
|
102
|
-
get {
|
|
92
|
+
get {_storage._nfcOssSuccessIsProvisionedMessage ?? "Is already provisioned"}
|
|
103
93
|
set {_uniqueStorage()._nfcOssSuccessIsProvisionedMessage = newValue}
|
|
104
94
|
}
|
|
105
95
|
/// Returns true if `nfcOssSuccessIsProvisionedMessage` has been explicitly set.
|
|
106
|
-
public var hasNfcOssSuccessIsProvisionedMessage: Bool {
|
|
96
|
+
public var hasNfcOssSuccessIsProvisionedMessage: Bool {_storage._nfcOssSuccessIsProvisionedMessage != nil}
|
|
107
97
|
/// Clears the value of `nfcOssSuccessIsProvisionedMessage`. Subsequent reads from it will return its default value.
|
|
108
98
|
public mutating func clearNfcOssSuccessIsProvisionedMessage() {_uniqueStorage()._nfcOssSuccessIsProvisionedMessage = nil}
|
|
109
99
|
|
|
110
100
|
public var nfcOssSuccessProvisionMessage: String {
|
|
111
|
-
get {
|
|
101
|
+
get {_storage._nfcOssSuccessProvisionMessage ?? "Successfully provisioned"}
|
|
112
102
|
set {_uniqueStorage()._nfcOssSuccessProvisionMessage = newValue}
|
|
113
103
|
}
|
|
114
104
|
/// Returns true if `nfcOssSuccessProvisionMessage` has been explicitly set.
|
|
115
|
-
public var hasNfcOssSuccessProvisionMessage: Bool {
|
|
105
|
+
public var hasNfcOssSuccessProvisionMessage: Bool {_storage._nfcOssSuccessProvisionMessage != nil}
|
|
116
106
|
/// Clears the value of `nfcOssSuccessProvisionMessage`. Subsequent reads from it will return its default value.
|
|
117
107
|
public mutating func clearNfcOssSuccessProvisionMessage() {_uniqueStorage()._nfcOssSuccessProvisionMessage = nil}
|
|
118
108
|
|
|
119
109
|
public var nfcOssSuccessUnprovisionMessage: String {
|
|
120
|
-
get {
|
|
110
|
+
get {_storage._nfcOssSuccessUnprovisionMessage ?? "Successfully unprovisioned"}
|
|
121
111
|
set {_uniqueStorage()._nfcOssSuccessUnprovisionMessage = newValue}
|
|
122
112
|
}
|
|
123
113
|
/// Returns true if `nfcOssSuccessUnprovisionMessage` has been explicitly set.
|
|
124
|
-
public var hasNfcOssSuccessUnprovisionMessage: Bool {
|
|
114
|
+
public var hasNfcOssSuccessUnprovisionMessage: Bool {_storage._nfcOssSuccessUnprovisionMessage != nil}
|
|
125
115
|
/// Clears the value of `nfcOssSuccessUnprovisionMessage`. Subsequent reads from it will return its default value.
|
|
126
116
|
public mutating func clearNfcOssSuccessUnprovisionMessage() {_uniqueStorage()._nfcOssSuccessUnprovisionMessage = nil}
|
|
127
117
|
|
|
128
118
|
public var nfcOssSuccessFormatMessage: String {
|
|
129
|
-
get {
|
|
119
|
+
get {_storage._nfcOssSuccessFormatMessage ?? "Transponder was successfully formatted"}
|
|
130
120
|
set {_uniqueStorage()._nfcOssSuccessFormatMessage = newValue}
|
|
131
121
|
}
|
|
132
122
|
/// Returns true if `nfcOssSuccessFormatMessage` has been explicitly set.
|
|
133
|
-
public var hasNfcOssSuccessFormatMessage: Bool {
|
|
123
|
+
public var hasNfcOssSuccessFormatMessage: Bool {_storage._nfcOssSuccessFormatMessage != nil}
|
|
134
124
|
/// Clears the value of `nfcOssSuccessFormatMessage`. Subsequent reads from it will return its default value.
|
|
135
125
|
public mutating func clearNfcOssSuccessFormatMessage() {_uniqueStorage()._nfcOssSuccessFormatMessage = nil}
|
|
136
126
|
|
|
137
127
|
public var nfcInitializingWritingProcess: String {
|
|
138
|
-
get {
|
|
128
|
+
get {_storage._nfcInitializingWritingProcess ?? "Initializing writing process"}
|
|
139
129
|
set {_uniqueStorage()._nfcInitializingWritingProcess = newValue}
|
|
140
130
|
}
|
|
141
131
|
/// Returns true if `nfcInitializingWritingProcess` has been explicitly set.
|
|
142
|
-
public var hasNfcInitializingWritingProcess: Bool {
|
|
132
|
+
public var hasNfcInitializingWritingProcess: Bool {_storage._nfcInitializingWritingProcess != nil}
|
|
143
133
|
/// Clears the value of `nfcInitializingWritingProcess`. Subsequent reads from it will return its default value.
|
|
144
134
|
public mutating func clearNfcInitializingWritingProcess() {_uniqueStorage()._nfcInitializingWritingProcess = nil}
|
|
145
135
|
|
|
146
136
|
public var nfcTransponderConnected: String {
|
|
147
|
-
get {
|
|
137
|
+
get {_storage._nfcTransponderConnected ?? "Transponder Connected"}
|
|
148
138
|
set {_uniqueStorage()._nfcTransponderConnected = newValue}
|
|
149
139
|
}
|
|
150
140
|
/// Returns true if `nfcTransponderConnected` has been explicitly set.
|
|
151
|
-
public var hasNfcTransponderConnected: Bool {
|
|
141
|
+
public var hasNfcTransponderConnected: Bool {_storage._nfcTransponderConnected != nil}
|
|
152
142
|
/// Clears the value of `nfcTransponderConnected`. Subsequent reads from it will return its default value.
|
|
153
143
|
public mutating func clearNfcTransponderConnected() {_uniqueStorage()._nfcTransponderConnected = nil}
|
|
154
144
|
|
|
155
145
|
public var nfcTransponderDisconnected: String {
|
|
156
|
-
get {
|
|
146
|
+
get {_storage._nfcTransponderDisconnected ?? "Transponder was disconnected"}
|
|
157
147
|
set {_uniqueStorage()._nfcTransponderDisconnected = newValue}
|
|
158
148
|
}
|
|
159
149
|
/// Returns true if `nfcTransponderDisconnected` has been explicitly set.
|
|
160
|
-
public var hasNfcTransponderDisconnected: Bool {
|
|
150
|
+
public var hasNfcTransponderDisconnected: Bool {_storage._nfcTransponderDisconnected != nil}
|
|
161
151
|
/// Clears the value of `nfcTransponderDisconnected`. Subsequent reads from it will return its default value.
|
|
162
152
|
public mutating func clearNfcTransponderDisconnected() {_uniqueStorage()._nfcTransponderDisconnected = nil}
|
|
163
153
|
|
|
164
154
|
public var nfcTransponderSuccessReadMessage: String {
|
|
165
|
-
get {
|
|
155
|
+
get {_storage._nfcTransponderSuccessReadMessage ?? "Transponder was successfully read"}
|
|
166
156
|
set {_uniqueStorage()._nfcTransponderSuccessReadMessage = newValue}
|
|
167
157
|
}
|
|
168
158
|
/// Returns true if `nfcTransponderSuccessReadMessage` has been explicitly set.
|
|
169
|
-
public var hasNfcTransponderSuccessReadMessage: Bool {
|
|
159
|
+
public var hasNfcTransponderSuccessReadMessage: Bool {_storage._nfcTransponderSuccessReadMessage != nil}
|
|
170
160
|
/// Clears the value of `nfcTransponderSuccessReadMessage`. Subsequent reads from it will return its default value.
|
|
171
161
|
public mutating func clearNfcTransponderSuccessReadMessage() {_uniqueStorage()._nfcTransponderSuccessReadMessage = nil}
|
|
172
162
|
|
|
173
163
|
public var nfcKioskRefreshTransponderNoRefreshNeededMessage: String {
|
|
174
|
-
get {
|
|
164
|
+
get {_storage._nfcKioskRefreshTransponderNoRefreshNeededMessage ?? "Credentials are valid — no refresh needed"}
|
|
175
165
|
set {_uniqueStorage()._nfcKioskRefreshTransponderNoRefreshNeededMessage = newValue}
|
|
176
166
|
}
|
|
177
167
|
/// Returns true if `nfcKioskRefreshTransponderNoRefreshNeededMessage` has been explicitly set.
|
|
178
|
-
public var hasNfcKioskRefreshTransponderNoRefreshNeededMessage: Bool {
|
|
168
|
+
public var hasNfcKioskRefreshTransponderNoRefreshNeededMessage: Bool {_storage._nfcKioskRefreshTransponderNoRefreshNeededMessage != nil}
|
|
179
169
|
/// Clears the value of `nfcKioskRefreshTransponderNoRefreshNeededMessage`. Subsequent reads from it will return its default value.
|
|
180
170
|
public mutating func clearNfcKioskRefreshTransponderNoRefreshNeededMessage() {_uniqueStorage()._nfcKioskRefreshTransponderNoRefreshNeededMessage = nil}
|
|
181
171
|
|
|
182
172
|
public var nfcKioskRefreshTransponderPartialRefreshMessage: String {
|
|
183
|
-
get {
|
|
173
|
+
get {_storage._nfcKioskRefreshTransponderPartialRefreshMessage ?? "%d out of %d credentials have been refreshed"}
|
|
184
174
|
set {_uniqueStorage()._nfcKioskRefreshTransponderPartialRefreshMessage = newValue}
|
|
185
175
|
}
|
|
186
176
|
/// Returns true if `nfcKioskRefreshTransponderPartialRefreshMessage` has been explicitly set.
|
|
187
|
-
public var hasNfcKioskRefreshTransponderPartialRefreshMessage: Bool {
|
|
177
|
+
public var hasNfcKioskRefreshTransponderPartialRefreshMessage: Bool {_storage._nfcKioskRefreshTransponderPartialRefreshMessage != nil}
|
|
188
178
|
/// Clears the value of `nfcKioskRefreshTransponderPartialRefreshMessage`. Subsequent reads from it will return its default value.
|
|
189
179
|
public mutating func clearNfcKioskRefreshTransponderPartialRefreshMessage() {_uniqueStorage()._nfcKioskRefreshTransponderPartialRefreshMessage = nil}
|
|
190
180
|
|
|
191
181
|
public var nfcKioskRefreshTransponderHoldYourCardSteadyMessage: String {
|
|
192
|
-
get {
|
|
182
|
+
get {_storage._nfcKioskRefreshTransponderHoldYourCardSteadyMessage ?? "Please hold your card steady until the process is done"}
|
|
193
183
|
set {_uniqueStorage()._nfcKioskRefreshTransponderHoldYourCardSteadyMessage = newValue}
|
|
194
184
|
}
|
|
195
185
|
/// Returns true if `nfcKioskRefreshTransponderHoldYourCardSteadyMessage` has been explicitly set.
|
|
196
|
-
public var hasNfcKioskRefreshTransponderHoldYourCardSteadyMessage: Bool {
|
|
186
|
+
public var hasNfcKioskRefreshTransponderHoldYourCardSteadyMessage: Bool {_storage._nfcKioskRefreshTransponderHoldYourCardSteadyMessage != nil}
|
|
197
187
|
/// Clears the value of `nfcKioskRefreshTransponderHoldYourCardSteadyMessage`. Subsequent reads from it will return its default value.
|
|
198
188
|
public mutating func clearNfcKioskRefreshTransponderHoldYourCardSteadyMessage() {_uniqueStorage()._nfcKioskRefreshTransponderHoldYourCardSteadyMessage = nil}
|
|
199
189
|
|
|
200
190
|
public var openViaOssTitle: String {
|
|
201
|
-
get {
|
|
191
|
+
get {_storage._openViaOssTitle ?? "Unlocking in Progress"}
|
|
202
192
|
set {_uniqueStorage()._openViaOssTitle = newValue}
|
|
203
193
|
}
|
|
204
194
|
/// Returns true if `openViaOssTitle` has been explicitly set.
|
|
205
|
-
public var hasOpenViaOssTitle: Bool {
|
|
195
|
+
public var hasOpenViaOssTitle: Bool {_storage._openViaOssTitle != nil}
|
|
206
196
|
/// Clears the value of `openViaOssTitle`. Subsequent reads from it will return its default value.
|
|
207
197
|
public mutating func clearOpenViaOssTitle() {_uniqueStorage()._openViaOssTitle = nil}
|
|
208
198
|
|
|
209
199
|
public var openViaOssWaitMessage: String {
|
|
210
|
-
get {
|
|
200
|
+
get {_storage._openViaOssWaitMessage ?? "Establishing secure connection..."}
|
|
211
201
|
set {_uniqueStorage()._openViaOssWaitMessage = newValue}
|
|
212
202
|
}
|
|
213
203
|
/// Returns true if `openViaOssWaitMessage` has been explicitly set.
|
|
214
|
-
public var hasOpenViaOssWaitMessage: Bool {
|
|
204
|
+
public var hasOpenViaOssWaitMessage: Bool {_storage._openViaOssWaitMessage != nil}
|
|
215
205
|
/// Clears the value of `openViaOssWaitMessage`. Subsequent reads from it will return its default value.
|
|
216
206
|
public mutating func clearOpenViaOssWaitMessage() {_uniqueStorage()._openViaOssWaitMessage = nil}
|
|
217
207
|
|
|
218
208
|
public var openViaOssAccessGrantedTitle: String {
|
|
219
|
-
get {
|
|
209
|
+
get {_storage._openViaOssAccessGrantedTitle ?? "Access Granted"}
|
|
220
210
|
set {_uniqueStorage()._openViaOssAccessGrantedTitle = newValue}
|
|
221
211
|
}
|
|
222
212
|
/// Returns true if `openViaOssAccessGrantedTitle` has been explicitly set.
|
|
223
|
-
public var hasOpenViaOssAccessGrantedTitle: Bool {
|
|
213
|
+
public var hasOpenViaOssAccessGrantedTitle: Bool {_storage._openViaOssAccessGrantedTitle != nil}
|
|
224
214
|
/// Clears the value of `openViaOssAccessGrantedTitle`. Subsequent reads from it will return its default value.
|
|
225
215
|
public mutating func clearOpenViaOssAccessGrantedTitle() {_uniqueStorage()._openViaOssAccessGrantedTitle = nil}
|
|
226
216
|
|
|
227
217
|
public var openViaOssAccessGrantedMessage: String {
|
|
228
|
-
get {
|
|
218
|
+
get {_storage._openViaOssAccessGrantedMessage ?? "Please proceed."}
|
|
229
219
|
set {_uniqueStorage()._openViaOssAccessGrantedMessage = newValue}
|
|
230
220
|
}
|
|
231
221
|
/// Returns true if `openViaOssAccessGrantedMessage` has been explicitly set.
|
|
232
|
-
public var hasOpenViaOssAccessGrantedMessage: Bool {
|
|
222
|
+
public var hasOpenViaOssAccessGrantedMessage: Bool {_storage._openViaOssAccessGrantedMessage != nil}
|
|
233
223
|
/// Clears the value of `openViaOssAccessGrantedMessage`. Subsequent reads from it will return its default value.
|
|
234
224
|
public mutating func clearOpenViaOssAccessGrantedMessage() {_uniqueStorage()._openViaOssAccessGrantedMessage = nil}
|
|
235
225
|
|
|
236
226
|
public var openViaOssAccessGrantedLockEngagedTitle: String {
|
|
237
|
-
get {
|
|
227
|
+
get {_storage._openViaOssAccessGrantedLockEngagedTitle ?? "Lock engaged"}
|
|
238
228
|
set {_uniqueStorage()._openViaOssAccessGrantedLockEngagedTitle = newValue}
|
|
239
229
|
}
|
|
240
230
|
/// Returns true if `openViaOssAccessGrantedLockEngagedTitle` has been explicitly set.
|
|
241
|
-
public var hasOpenViaOssAccessGrantedLockEngagedTitle: Bool {
|
|
231
|
+
public var hasOpenViaOssAccessGrantedLockEngagedTitle: Bool {_storage._openViaOssAccessGrantedLockEngagedTitle != nil}
|
|
242
232
|
/// Clears the value of `openViaOssAccessGrantedLockEngagedTitle`. Subsequent reads from it will return its default value.
|
|
243
233
|
public mutating func clearOpenViaOssAccessGrantedLockEngagedTitle() {_uniqueStorage()._openViaOssAccessGrantedLockEngagedTitle = nil}
|
|
244
234
|
|
|
245
235
|
public var openViaOssAccessGrantedLockEngagedMessage: String {
|
|
246
|
-
get {
|
|
236
|
+
get {_storage._openViaOssAccessGrantedLockEngagedMessage ?? "Lock permanently closed."}
|
|
247
237
|
set {_uniqueStorage()._openViaOssAccessGrantedLockEngagedMessage = newValue}
|
|
248
238
|
}
|
|
249
239
|
/// Returns true if `openViaOssAccessGrantedLockEngagedMessage` has been explicitly set.
|
|
250
|
-
public var hasOpenViaOssAccessGrantedLockEngagedMessage: Bool {
|
|
240
|
+
public var hasOpenViaOssAccessGrantedLockEngagedMessage: Bool {_storage._openViaOssAccessGrantedLockEngagedMessage != nil}
|
|
251
241
|
/// Clears the value of `openViaOssAccessGrantedLockEngagedMessage`. Subsequent reads from it will return its default value.
|
|
252
242
|
public mutating func clearOpenViaOssAccessGrantedLockEngagedMessage() {_uniqueStorage()._openViaOssAccessGrantedLockEngagedMessage = nil}
|
|
253
243
|
|
|
254
244
|
public var openViaOssAccessGrantedLockDisengagedTitle: String {
|
|
255
|
-
get {
|
|
245
|
+
get {_storage._openViaOssAccessGrantedLockDisengagedTitle ?? "Lock disengaged"}
|
|
256
246
|
set {_uniqueStorage()._openViaOssAccessGrantedLockDisengagedTitle = newValue}
|
|
257
247
|
}
|
|
258
248
|
/// Returns true if `openViaOssAccessGrantedLockDisengagedTitle` has been explicitly set.
|
|
259
|
-
public var hasOpenViaOssAccessGrantedLockDisengagedTitle: Bool {
|
|
249
|
+
public var hasOpenViaOssAccessGrantedLockDisengagedTitle: Bool {_storage._openViaOssAccessGrantedLockDisengagedTitle != nil}
|
|
260
250
|
/// Clears the value of `openViaOssAccessGrantedLockDisengagedTitle`. Subsequent reads from it will return its default value.
|
|
261
251
|
public mutating func clearOpenViaOssAccessGrantedLockDisengagedTitle() {_uniqueStorage()._openViaOssAccessGrantedLockDisengagedTitle = nil}
|
|
262
252
|
|
|
263
253
|
public var openViaOssAccessGrantedLockDisengagedMessage: String {
|
|
264
|
-
get {
|
|
254
|
+
get {_storage._openViaOssAccessGrantedLockDisengagedMessage ?? "Lock permanently opened."}
|
|
265
255
|
set {_uniqueStorage()._openViaOssAccessGrantedLockDisengagedMessage = newValue}
|
|
266
256
|
}
|
|
267
257
|
/// Returns true if `openViaOssAccessGrantedLockDisengagedMessage` has been explicitly set.
|
|
268
|
-
public var hasOpenViaOssAccessGrantedLockDisengagedMessage: Bool {
|
|
258
|
+
public var hasOpenViaOssAccessGrantedLockDisengagedMessage: Bool {_storage._openViaOssAccessGrantedLockDisengagedMessage != nil}
|
|
269
259
|
/// Clears the value of `openViaOssAccessGrantedLockDisengagedMessage`. Subsequent reads from it will return its default value.
|
|
270
260
|
public mutating func clearOpenViaOssAccessGrantedLockDisengagedMessage() {_uniqueStorage()._openViaOssAccessGrantedLockDisengagedMessage = nil}
|
|
271
261
|
|
|
272
262
|
public var openViaOssAccessGrantedExtendedTimeMessage: String {
|
|
273
|
-
get {
|
|
263
|
+
get {_storage._openViaOssAccessGrantedExtendedTimeMessage ?? "Lock will remain disengaged for %d seconds."}
|
|
274
264
|
set {_uniqueStorage()._openViaOssAccessGrantedExtendedTimeMessage = newValue}
|
|
275
265
|
}
|
|
276
266
|
/// Returns true if `openViaOssAccessGrantedExtendedTimeMessage` has been explicitly set.
|
|
277
|
-
public var hasOpenViaOssAccessGrantedExtendedTimeMessage: Bool {
|
|
267
|
+
public var hasOpenViaOssAccessGrantedExtendedTimeMessage: Bool {_storage._openViaOssAccessGrantedExtendedTimeMessage != nil}
|
|
278
268
|
/// Clears the value of `openViaOssAccessGrantedExtendedTimeMessage`. Subsequent reads from it will return its default value.
|
|
279
269
|
public mutating func clearOpenViaOssAccessGrantedExtendedTimeMessage() {_uniqueStorage()._openViaOssAccessGrantedExtendedTimeMessage = nil}
|
|
280
270
|
|
|
281
271
|
public var openViaOssAccessDeniedTitle: String {
|
|
282
|
-
get {
|
|
272
|
+
get {_storage._openViaOssAccessDeniedTitle ?? "Access Denied"}
|
|
283
273
|
set {_uniqueStorage()._openViaOssAccessDeniedTitle = newValue}
|
|
284
274
|
}
|
|
285
275
|
/// Returns true if `openViaOssAccessDeniedTitle` has been explicitly set.
|
|
286
|
-
public var hasOpenViaOssAccessDeniedTitle: Bool {
|
|
276
|
+
public var hasOpenViaOssAccessDeniedTitle: Bool {_storage._openViaOssAccessDeniedTitle != nil}
|
|
287
277
|
/// Clears the value of `openViaOssAccessDeniedTitle`. Subsequent reads from it will return its default value.
|
|
288
278
|
public mutating func clearOpenViaOssAccessDeniedTitle() {_uniqueStorage()._openViaOssAccessDeniedTitle = nil}
|
|
289
279
|
|
|
290
280
|
public var openViaOssAccessDeniedMessage: String {
|
|
291
|
-
get {
|
|
281
|
+
get {_storage._openViaOssAccessDeniedMessage ?? "Credentials are invalid or outdated."}
|
|
292
282
|
set {_uniqueStorage()._openViaOssAccessDeniedMessage = newValue}
|
|
293
283
|
}
|
|
294
284
|
/// Returns true if `openViaOssAccessDeniedMessage` has been explicitly set.
|
|
295
|
-
public var hasOpenViaOssAccessDeniedMessage: Bool {
|
|
285
|
+
public var hasOpenViaOssAccessDeniedMessage: Bool {_storage._openViaOssAccessDeniedMessage != nil}
|
|
296
286
|
/// Clears the value of `openViaOssAccessDeniedMessage`. Subsequent reads from it will return its default value.
|
|
297
287
|
public mutating func clearOpenViaOssAccessDeniedMessage() {_uniqueStorage()._openViaOssAccessDeniedMessage = nil}
|
|
298
288
|
|
|
299
289
|
public var openViaOssAccessDeniedScheduleMismatchMessage: String {
|
|
300
|
-
get {
|
|
290
|
+
get {_storage._openViaOssAccessDeniedScheduleMismatchMessage ?? "Credentials are not valid at this time and/or day of the week."}
|
|
301
291
|
set {_uniqueStorage()._openViaOssAccessDeniedScheduleMismatchMessage = newValue}
|
|
302
292
|
}
|
|
303
293
|
/// Returns true if `openViaOssAccessDeniedScheduleMismatchMessage` has been explicitly set.
|
|
304
|
-
public var hasOpenViaOssAccessDeniedScheduleMismatchMessage: Bool {
|
|
294
|
+
public var hasOpenViaOssAccessDeniedScheduleMismatchMessage: Bool {_storage._openViaOssAccessDeniedScheduleMismatchMessage != nil}
|
|
305
295
|
/// Clears the value of `openViaOssAccessDeniedScheduleMismatchMessage`. Subsequent reads from it will return its default value.
|
|
306
296
|
public mutating func clearOpenViaOssAccessDeniedScheduleMismatchMessage() {_uniqueStorage()._openViaOssAccessDeniedScheduleMismatchMessage = nil}
|
|
307
297
|
|
|
308
298
|
public var openViaOssErrorTitle: String {
|
|
309
|
-
get {
|
|
299
|
+
get {_storage._openViaOssErrorTitle ?? "Error"}
|
|
310
300
|
set {_uniqueStorage()._openViaOssErrorTitle = newValue}
|
|
311
301
|
}
|
|
312
302
|
/// Returns true if `openViaOssErrorTitle` has been explicitly set.
|
|
313
|
-
public var hasOpenViaOssErrorTitle: Bool {
|
|
303
|
+
public var hasOpenViaOssErrorTitle: Bool {_storage._openViaOssErrorTitle != nil}
|
|
314
304
|
/// Clears the value of `openViaOssErrorTitle`. Subsequent reads from it will return its default value.
|
|
315
305
|
public mutating func clearOpenViaOssErrorTitle() {_uniqueStorage()._openViaOssErrorTitle = nil}
|
|
316
306
|
|
|
317
307
|
public var cmnCancelLabel: String {
|
|
318
|
-
get {
|
|
308
|
+
get {_storage._cmnCancelLabel ?? "Cancel"}
|
|
319
309
|
set {_uniqueStorage()._cmnCancelLabel = newValue}
|
|
320
310
|
}
|
|
321
311
|
/// Returns true if `cmnCancelLabel` has been explicitly set.
|
|
322
|
-
public var hasCmnCancelLabel: Bool {
|
|
312
|
+
public var hasCmnCancelLabel: Bool {_storage._cmnCancelLabel != nil}
|
|
323
313
|
/// Clears the value of `cmnCancelLabel`. Subsequent reads from it will return its default value.
|
|
324
314
|
public mutating func clearCmnCancelLabel() {_uniqueStorage()._cmnCancelLabel = nil}
|
|
325
315
|
|
|
326
316
|
public var cmnCloseLabel: String {
|
|
327
|
-
get {
|
|
317
|
+
get {_storage._cmnCloseLabel ?? "Close"}
|
|
328
318
|
set {_uniqueStorage()._cmnCloseLabel = newValue}
|
|
329
319
|
}
|
|
330
320
|
/// Returns true if `cmnCloseLabel` has been explicitly set.
|
|
331
|
-
public var hasCmnCloseLabel: Bool {
|
|
321
|
+
public var hasCmnCloseLabel: Bool {_storage._cmnCloseLabel != nil}
|
|
332
322
|
/// Clears the value of `cmnCloseLabel`. Subsequent reads from it will return its default value.
|
|
333
323
|
public mutating func clearCmnCloseLabel() {_uniqueStorage()._cmnCloseLabel = nil}
|
|
334
324
|
|
|
335
325
|
public var syncDeviceInProgressTitle: String {
|
|
336
|
-
get {
|
|
326
|
+
get {_storage._syncDeviceInProgressTitle ?? "Synchronization in Progress"}
|
|
337
327
|
set {_uniqueStorage()._syncDeviceInProgressTitle = newValue}
|
|
338
328
|
}
|
|
339
329
|
/// Returns true if `syncDeviceInProgressTitle` has been explicitly set.
|
|
340
|
-
public var hasSyncDeviceInProgressTitle: Bool {
|
|
330
|
+
public var hasSyncDeviceInProgressTitle: Bool {_storage._syncDeviceInProgressTitle != nil}
|
|
341
331
|
/// Clears the value of `syncDeviceInProgressTitle`. Subsequent reads from it will return its default value.
|
|
342
332
|
public mutating func clearSyncDeviceInProgressTitle() {_uniqueStorage()._syncDeviceInProgressTitle = nil}
|
|
343
333
|
|
|
344
334
|
public var syncDeviceFailedTitle: String {
|
|
345
|
-
get {
|
|
335
|
+
get {_storage._syncDeviceFailedTitle ?? "Synchronization has failed"}
|
|
346
336
|
set {_uniqueStorage()._syncDeviceFailedTitle = newValue}
|
|
347
337
|
}
|
|
348
338
|
/// Returns true if `syncDeviceFailedTitle` has been explicitly set.
|
|
349
|
-
public var hasSyncDeviceFailedTitle: Bool {
|
|
339
|
+
public var hasSyncDeviceFailedTitle: Bool {_storage._syncDeviceFailedTitle != nil}
|
|
350
340
|
/// Clears the value of `syncDeviceFailedTitle`. Subsequent reads from it will return its default value.
|
|
351
341
|
public mutating func clearSyncDeviceFailedTitle() {_uniqueStorage()._syncDeviceFailedTitle = nil}
|
|
352
342
|
|
|
353
343
|
public var syncDeviceCancellingTitle: String {
|
|
354
|
-
get {
|
|
344
|
+
get {_storage._syncDeviceCancellingTitle ?? "Cancelling..."}
|
|
355
345
|
set {_uniqueStorage()._syncDeviceCancellingTitle = newValue}
|
|
356
346
|
}
|
|
357
347
|
/// Returns true if `syncDeviceCancellingTitle` has been explicitly set.
|
|
358
|
-
public var hasSyncDeviceCancellingTitle: Bool {
|
|
348
|
+
public var hasSyncDeviceCancellingTitle: Bool {_storage._syncDeviceCancellingTitle != nil}
|
|
359
349
|
/// Clears the value of `syncDeviceCancellingTitle`. Subsequent reads from it will return its default value.
|
|
360
350
|
public mutating func clearSyncDeviceCancellingTitle() {_uniqueStorage()._syncDeviceCancellingTitle = nil}
|
|
361
351
|
|
|
362
352
|
public var syncDeviceCompletedTitle: String {
|
|
363
|
-
get {
|
|
353
|
+
get {_storage._syncDeviceCompletedTitle ?? "Synchronization has been completed"}
|
|
364
354
|
set {_uniqueStorage()._syncDeviceCompletedTitle = newValue}
|
|
365
355
|
}
|
|
366
356
|
/// Returns true if `syncDeviceCompletedTitle` has been explicitly set.
|
|
367
|
-
public var hasSyncDeviceCompletedTitle: Bool {
|
|
357
|
+
public var hasSyncDeviceCompletedTitle: Bool {_storage._syncDeviceCompletedTitle != nil}
|
|
368
358
|
/// Clears the value of `syncDeviceCompletedTitle`. Subsequent reads from it will return its default value.
|
|
369
359
|
public mutating func clearSyncDeviceCompletedTitle() {_uniqueStorage()._syncDeviceCompletedTitle = nil}
|
|
370
360
|
|
|
371
361
|
public var syncDeviceGetAuthenticationTokenTaskLabel: String {
|
|
372
|
-
get {
|
|
362
|
+
get {_storage._syncDeviceGetAuthenticationTokenTaskLabel ?? "Issue authentication token"}
|
|
373
363
|
set {_uniqueStorage()._syncDeviceGetAuthenticationTokenTaskLabel = newValue}
|
|
374
364
|
}
|
|
375
365
|
/// Returns true if `syncDeviceGetAuthenticationTokenTaskLabel` has been explicitly set.
|
|
376
|
-
public var hasSyncDeviceGetAuthenticationTokenTaskLabel: Bool {
|
|
366
|
+
public var hasSyncDeviceGetAuthenticationTokenTaskLabel: Bool {_storage._syncDeviceGetAuthenticationTokenTaskLabel != nil}
|
|
377
367
|
/// Clears the value of `syncDeviceGetAuthenticationTokenTaskLabel`. Subsequent reads from it will return its default value.
|
|
378
368
|
public mutating func clearSyncDeviceGetAuthenticationTokenTaskLabel() {_uniqueStorage()._syncDeviceGetAuthenticationTokenTaskLabel = nil}
|
|
379
369
|
|
|
380
370
|
public var syncDeviceRetrieveDeviceConfigurationTaskLabel: String {
|
|
381
|
-
get {
|
|
371
|
+
get {_storage._syncDeviceRetrieveDeviceConfigurationTaskLabel ?? "Retrieve device configuration"}
|
|
382
372
|
set {_uniqueStorage()._syncDeviceRetrieveDeviceConfigurationTaskLabel = newValue}
|
|
383
373
|
}
|
|
384
374
|
/// Returns true if `syncDeviceRetrieveDeviceConfigurationTaskLabel` has been explicitly set.
|
|
385
|
-
public var hasSyncDeviceRetrieveDeviceConfigurationTaskLabel: Bool {
|
|
375
|
+
public var hasSyncDeviceRetrieveDeviceConfigurationTaskLabel: Bool {_storage._syncDeviceRetrieveDeviceConfigurationTaskLabel != nil}
|
|
386
376
|
/// Clears the value of `syncDeviceRetrieveDeviceConfigurationTaskLabel`. Subsequent reads from it will return its default value.
|
|
387
377
|
public mutating func clearSyncDeviceRetrieveDeviceConfigurationTaskLabel() {_uniqueStorage()._syncDeviceRetrieveDeviceConfigurationTaskLabel = nil}
|
|
388
378
|
|
|
389
379
|
public var syncDeviceUpdateDeviceConfigurationTaskLabel: String {
|
|
390
|
-
get {
|
|
380
|
+
get {_storage._syncDeviceUpdateDeviceConfigurationTaskLabel ?? "Update device configuration"}
|
|
391
381
|
set {_uniqueStorage()._syncDeviceUpdateDeviceConfigurationTaskLabel = newValue}
|
|
392
382
|
}
|
|
393
383
|
/// Returns true if `syncDeviceUpdateDeviceConfigurationTaskLabel` has been explicitly set.
|
|
394
|
-
public var hasSyncDeviceUpdateDeviceConfigurationTaskLabel: Bool {
|
|
384
|
+
public var hasSyncDeviceUpdateDeviceConfigurationTaskLabel: Bool {_storage._syncDeviceUpdateDeviceConfigurationTaskLabel != nil}
|
|
395
385
|
/// Clears the value of `syncDeviceUpdateDeviceConfigurationTaskLabel`. Subsequent reads from it will return its default value.
|
|
396
386
|
public mutating func clearSyncDeviceUpdateDeviceConfigurationTaskLabel() {_uniqueStorage()._syncDeviceUpdateDeviceConfigurationTaskLabel = nil}
|
|
397
387
|
|
|
398
388
|
public var syncDeviceUpdateDeviceTimeTaskLabel: String {
|
|
399
|
-
get {
|
|
389
|
+
get {_storage._syncDeviceUpdateDeviceTimeTaskLabel ?? "Update device time"}
|
|
400
390
|
set {_uniqueStorage()._syncDeviceUpdateDeviceTimeTaskLabel = newValue}
|
|
401
391
|
}
|
|
402
392
|
/// Returns true if `syncDeviceUpdateDeviceTimeTaskLabel` has been explicitly set.
|
|
403
|
-
public var hasSyncDeviceUpdateDeviceTimeTaskLabel: Bool {
|
|
393
|
+
public var hasSyncDeviceUpdateDeviceTimeTaskLabel: Bool {_storage._syncDeviceUpdateDeviceTimeTaskLabel != nil}
|
|
404
394
|
/// Clears the value of `syncDeviceUpdateDeviceTimeTaskLabel`. Subsequent reads from it will return its default value.
|
|
405
395
|
public mutating func clearSyncDeviceUpdateDeviceTimeTaskLabel() {_uniqueStorage()._syncDeviceUpdateDeviceTimeTaskLabel = nil}
|
|
406
396
|
|
|
407
397
|
public var syncDeviceWaitForDeviceToRestartTaskLabel: String {
|
|
408
|
-
get {
|
|
398
|
+
get {_storage._syncDeviceWaitForDeviceToRestartTaskLabel ?? "Wait for device to restart"}
|
|
409
399
|
set {_uniqueStorage()._syncDeviceWaitForDeviceToRestartTaskLabel = newValue}
|
|
410
400
|
}
|
|
411
401
|
/// Returns true if `syncDeviceWaitForDeviceToRestartTaskLabel` has been explicitly set.
|
|
412
|
-
public var hasSyncDeviceWaitForDeviceToRestartTaskLabel: Bool {
|
|
402
|
+
public var hasSyncDeviceWaitForDeviceToRestartTaskLabel: Bool {_storage._syncDeviceWaitForDeviceToRestartTaskLabel != nil}
|
|
413
403
|
/// Clears the value of `syncDeviceWaitForDeviceToRestartTaskLabel`. Subsequent reads from it will return its default value.
|
|
414
404
|
public mutating func clearSyncDeviceWaitForDeviceToRestartTaskLabel() {_uniqueStorage()._syncDeviceWaitForDeviceToRestartTaskLabel = nil}
|
|
415
405
|
|
|
416
406
|
public var syncDevicePushEventLogsTaskLabel: String {
|
|
417
|
-
get {
|
|
407
|
+
get {_storage._syncDevicePushEventLogsTaskLabel ?? "Push event logs"}
|
|
418
408
|
set {_uniqueStorage()._syncDevicePushEventLogsTaskLabel = newValue}
|
|
419
409
|
}
|
|
420
410
|
/// Returns true if `syncDevicePushEventLogsTaskLabel` has been explicitly set.
|
|
421
|
-
public var hasSyncDevicePushEventLogsTaskLabel: Bool {
|
|
411
|
+
public var hasSyncDevicePushEventLogsTaskLabel: Bool {_storage._syncDevicePushEventLogsTaskLabel != nil}
|
|
422
412
|
/// Clears the value of `syncDevicePushEventLogsTaskLabel`. Subsequent reads from it will return its default value.
|
|
423
413
|
public mutating func clearSyncDevicePushEventLogsTaskLabel() {_uniqueStorage()._syncDevicePushEventLogsTaskLabel = nil}
|
|
424
414
|
|
|
425
415
|
public var syncDevicePushSystemLogsTaskLabel: String {
|
|
426
|
-
get {
|
|
416
|
+
get {_storage._syncDevicePushSystemLogsTaskLabel ?? "Push system logs"}
|
|
427
417
|
set {_uniqueStorage()._syncDevicePushSystemLogsTaskLabel = newValue}
|
|
428
418
|
}
|
|
429
419
|
/// Returns true if `syncDevicePushSystemLogsTaskLabel` has been explicitly set.
|
|
430
|
-
public var hasSyncDevicePushSystemLogsTaskLabel: Bool {
|
|
420
|
+
public var hasSyncDevicePushSystemLogsTaskLabel: Bool {_storage._syncDevicePushSystemLogsTaskLabel != nil}
|
|
431
421
|
/// Clears the value of `syncDevicePushSystemLogsTaskLabel`. Subsequent reads from it will return its default value.
|
|
432
422
|
public mutating func clearSyncDevicePushSystemLogsTaskLabel() {_uniqueStorage()._syncDevicePushSystemLogsTaskLabel = nil}
|
|
433
423
|
|
|
434
424
|
public var syncDeviceRetrieveBlacklistEntriesTaskLabel: String {
|
|
435
|
-
get {
|
|
425
|
+
get {_storage._syncDeviceRetrieveBlacklistEntriesTaskLabel ?? "Retrieve blacklist entries"}
|
|
436
426
|
set {_uniqueStorage()._syncDeviceRetrieveBlacklistEntriesTaskLabel = newValue}
|
|
437
427
|
}
|
|
438
428
|
/// Returns true if `syncDeviceRetrieveBlacklistEntriesTaskLabel` has been explicitly set.
|
|
439
|
-
public var hasSyncDeviceRetrieveBlacklistEntriesTaskLabel: Bool {
|
|
429
|
+
public var hasSyncDeviceRetrieveBlacklistEntriesTaskLabel: Bool {_storage._syncDeviceRetrieveBlacklistEntriesTaskLabel != nil}
|
|
440
430
|
/// Clears the value of `syncDeviceRetrieveBlacklistEntriesTaskLabel`. Subsequent reads from it will return its default value.
|
|
441
431
|
public mutating func clearSyncDeviceRetrieveBlacklistEntriesTaskLabel() {_uniqueStorage()._syncDeviceRetrieveBlacklistEntriesTaskLabel = nil}
|
|
442
432
|
|
|
443
433
|
public var syncDeviceDeployBlacklistEntriesTaskLabel: String {
|
|
444
|
-
get {
|
|
434
|
+
get {_storage._syncDeviceDeployBlacklistEntriesTaskLabel ?? "Deploy blacklist entries"}
|
|
445
435
|
set {_uniqueStorage()._syncDeviceDeployBlacklistEntriesTaskLabel = newValue}
|
|
446
436
|
}
|
|
447
437
|
/// Returns true if `syncDeviceDeployBlacklistEntriesTaskLabel` has been explicitly set.
|
|
448
|
-
public var hasSyncDeviceDeployBlacklistEntriesTaskLabel: Bool {
|
|
438
|
+
public var hasSyncDeviceDeployBlacklistEntriesTaskLabel: Bool {_storage._syncDeviceDeployBlacklistEntriesTaskLabel != nil}
|
|
449
439
|
/// Clears the value of `syncDeviceDeployBlacklistEntriesTaskLabel`. Subsequent reads from it will return its default value.
|
|
450
440
|
public mutating func clearSyncDeviceDeployBlacklistEntriesTaskLabel() {_uniqueStorage()._syncDeviceDeployBlacklistEntriesTaskLabel = nil}
|
|
451
441
|
|
|
452
442
|
public var syncDeviceRetrieveSystemStatusTaskLabel: String {
|
|
453
|
-
get {
|
|
443
|
+
get {_storage._syncDeviceRetrieveSystemStatusTaskLabel ?? "Retrieve system status"}
|
|
454
444
|
set {_uniqueStorage()._syncDeviceRetrieveSystemStatusTaskLabel = newValue}
|
|
455
445
|
}
|
|
456
446
|
/// Returns true if `syncDeviceRetrieveSystemStatusTaskLabel` has been explicitly set.
|
|
457
|
-
public var hasSyncDeviceRetrieveSystemStatusTaskLabel: Bool {
|
|
447
|
+
public var hasSyncDeviceRetrieveSystemStatusTaskLabel: Bool {_storage._syncDeviceRetrieveSystemStatusTaskLabel != nil}
|
|
458
448
|
/// Clears the value of `syncDeviceRetrieveSystemStatusTaskLabel`. Subsequent reads from it will return its default value.
|
|
459
449
|
public mutating func clearSyncDeviceRetrieveSystemStatusTaskLabel() {_uniqueStorage()._syncDeviceRetrieveSystemStatusTaskLabel = nil}
|
|
460
450
|
|
|
461
451
|
public var syncDevicePushSystemStatusTaskLabel: String {
|
|
462
|
-
get {
|
|
452
|
+
get {_storage._syncDevicePushSystemStatusTaskLabel ?? "Push system status"}
|
|
463
453
|
set {_uniqueStorage()._syncDevicePushSystemStatusTaskLabel = newValue}
|
|
464
454
|
}
|
|
465
455
|
/// Returns true if `syncDevicePushSystemStatusTaskLabel` has been explicitly set.
|
|
466
|
-
public var hasSyncDevicePushSystemStatusTaskLabel: Bool {
|
|
456
|
+
public var hasSyncDevicePushSystemStatusTaskLabel: Bool {_storage._syncDevicePushSystemStatusTaskLabel != nil}
|
|
467
457
|
/// Clears the value of `syncDevicePushSystemStatusTaskLabel`. Subsequent reads from it will return its default value.
|
|
468
458
|
public mutating func clearSyncDevicePushSystemStatusTaskLabel() {_uniqueStorage()._syncDevicePushSystemStatusTaskLabel = nil}
|
|
469
459
|
|
|
470
460
|
public var syncDeviceCheckLatestFwlabel: String {
|
|
471
|
-
get {
|
|
461
|
+
get {_storage._syncDeviceCheckLatestFwlabel ?? "Check latest firmware"}
|
|
472
462
|
set {_uniqueStorage()._syncDeviceCheckLatestFwlabel = newValue}
|
|
473
463
|
}
|
|
474
464
|
/// Returns true if `syncDeviceCheckLatestFwlabel` has been explicitly set.
|
|
475
|
-
public var hasSyncDeviceCheckLatestFwlabel: Bool {
|
|
465
|
+
public var hasSyncDeviceCheckLatestFwlabel: Bool {_storage._syncDeviceCheckLatestFwlabel != nil}
|
|
476
466
|
/// Clears the value of `syncDeviceCheckLatestFwlabel`. Subsequent reads from it will return its default value.
|
|
477
467
|
public mutating func clearSyncDeviceCheckLatestFwlabel() {_uniqueStorage()._syncDeviceCheckLatestFwlabel = nil}
|
|
478
468
|
|
|
479
469
|
public var dfuInProgressTitle: String {
|
|
480
|
-
get {
|
|
470
|
+
get {_storage._dfuInProgressTitle ?? "Update in Progress"}
|
|
481
471
|
set {_uniqueStorage()._dfuInProgressTitle = newValue}
|
|
482
472
|
}
|
|
483
473
|
/// Returns true if `dfuInProgressTitle` has been explicitly set.
|
|
484
|
-
public var hasDfuInProgressTitle: Bool {
|
|
474
|
+
public var hasDfuInProgressTitle: Bool {_storage._dfuInProgressTitle != nil}
|
|
485
475
|
/// Clears the value of `dfuInProgressTitle`. Subsequent reads from it will return its default value.
|
|
486
476
|
public mutating func clearDfuInProgressTitle() {_uniqueStorage()._dfuInProgressTitle = nil}
|
|
487
477
|
|
|
488
478
|
public var dfuFailedTitle: String {
|
|
489
|
-
get {
|
|
479
|
+
get {_storage._dfuFailedTitle ?? "Update has failed"}
|
|
490
480
|
set {_uniqueStorage()._dfuFailedTitle = newValue}
|
|
491
481
|
}
|
|
492
482
|
/// Returns true if `dfuFailedTitle` has been explicitly set.
|
|
493
|
-
public var hasDfuFailedTitle: Bool {
|
|
483
|
+
public var hasDfuFailedTitle: Bool {_storage._dfuFailedTitle != nil}
|
|
494
484
|
/// Clears the value of `dfuFailedTitle`. Subsequent reads from it will return its default value.
|
|
495
485
|
public mutating func clearDfuFailedTitle() {_uniqueStorage()._dfuFailedTitle = nil}
|
|
496
486
|
|
|
497
487
|
public var dfuCancellingTitle: String {
|
|
498
|
-
get {
|
|
488
|
+
get {_storage._dfuCancellingTitle ?? "Cancelling..."}
|
|
499
489
|
set {_uniqueStorage()._dfuCancellingTitle = newValue}
|
|
500
490
|
}
|
|
501
491
|
/// Returns true if `dfuCancellingTitle` has been explicitly set.
|
|
502
|
-
public var hasDfuCancellingTitle: Bool {
|
|
492
|
+
public var hasDfuCancellingTitle: Bool {_storage._dfuCancellingTitle != nil}
|
|
503
493
|
/// Clears the value of `dfuCancellingTitle`. Subsequent reads from it will return its default value.
|
|
504
494
|
public mutating func clearDfuCancellingTitle() {_uniqueStorage()._dfuCancellingTitle = nil}
|
|
505
495
|
|
|
506
496
|
public var dfuCompletedTitle: String {
|
|
507
|
-
get {
|
|
497
|
+
get {_storage._dfuCompletedTitle ?? "Update has been completed"}
|
|
508
498
|
set {_uniqueStorage()._dfuCompletedTitle = newValue}
|
|
509
499
|
}
|
|
510
500
|
/// Returns true if `dfuCompletedTitle` has been explicitly set.
|
|
511
|
-
public var hasDfuCompletedTitle: Bool {
|
|
501
|
+
public var hasDfuCompletedTitle: Bool {_storage._dfuCompletedTitle != nil}
|
|
512
502
|
/// Clears the value of `dfuCompletedTitle`. Subsequent reads from it will return its default value.
|
|
513
503
|
public mutating func clearDfuCompletedTitle() {_uniqueStorage()._dfuCompletedTitle = nil}
|
|
514
504
|
|
|
515
505
|
public var getAuthenticationTokenTaskLabel: String {
|
|
516
|
-
get {
|
|
506
|
+
get {_storage._getAuthenticationTokenTaskLabel ?? "Issue authentication token"}
|
|
517
507
|
set {_uniqueStorage()._getAuthenticationTokenTaskLabel = newValue}
|
|
518
508
|
}
|
|
519
509
|
/// Returns true if `getAuthenticationTokenTaskLabel` has been explicitly set.
|
|
520
|
-
public var hasGetAuthenticationTokenTaskLabel: Bool {
|
|
510
|
+
public var hasGetAuthenticationTokenTaskLabel: Bool {_storage._getAuthenticationTokenTaskLabel != nil}
|
|
521
511
|
/// Clears the value of `getAuthenticationTokenTaskLabel`. Subsequent reads from it will return its default value.
|
|
522
512
|
public mutating func clearGetAuthenticationTokenTaskLabel() {_uniqueStorage()._getAuthenticationTokenTaskLabel = nil}
|
|
523
513
|
|
|
524
514
|
public var dfuCheckLatestFwlabel: String {
|
|
525
|
-
get {
|
|
515
|
+
get {_storage._dfuCheckLatestFwlabel ?? "Check latest firmware"}
|
|
526
516
|
set {_uniqueStorage()._dfuCheckLatestFwlabel = newValue}
|
|
527
517
|
}
|
|
528
518
|
/// Returns true if `dfuCheckLatestFwlabel` has been explicitly set.
|
|
529
|
-
public var hasDfuCheckLatestFwlabel: Bool {
|
|
519
|
+
public var hasDfuCheckLatestFwlabel: Bool {_storage._dfuCheckLatestFwlabel != nil}
|
|
530
520
|
/// Clears the value of `dfuCheckLatestFwlabel`. Subsequent reads from it will return its default value.
|
|
531
521
|
public mutating func clearDfuCheckLatestFwlabel() {_uniqueStorage()._dfuCheckLatestFwlabel = nil}
|
|
532
522
|
|
|
533
523
|
public var dfuDownloadLatestFwlabel: String {
|
|
534
|
-
get {
|
|
524
|
+
get {_storage._dfuDownloadLatestFwlabel ?? "Download latest firmware"}
|
|
535
525
|
set {_uniqueStorage()._dfuDownloadLatestFwlabel = newValue}
|
|
536
526
|
}
|
|
537
527
|
/// Returns true if `dfuDownloadLatestFwlabel` has been explicitly set.
|
|
538
|
-
public var hasDfuDownloadLatestFwlabel: Bool {
|
|
528
|
+
public var hasDfuDownloadLatestFwlabel: Bool {_storage._dfuDownloadLatestFwlabel != nil}
|
|
539
529
|
/// Clears the value of `dfuDownloadLatestFwlabel`. Subsequent reads from it will return its default value.
|
|
540
530
|
public mutating func clearDfuDownloadLatestFwlabel() {_uniqueStorage()._dfuDownloadLatestFwlabel = nil}
|
|
541
531
|
|
|
542
532
|
public var dfuPrepareUpdateLabel: String {
|
|
543
|
-
get {
|
|
533
|
+
get {_storage._dfuPrepareUpdateLabel ?? "Prepare Update"}
|
|
544
534
|
set {_uniqueStorage()._dfuPrepareUpdateLabel = newValue}
|
|
545
535
|
}
|
|
546
536
|
/// Returns true if `dfuPrepareUpdateLabel` has been explicitly set.
|
|
547
|
-
public var hasDfuPrepareUpdateLabel: Bool {
|
|
537
|
+
public var hasDfuPrepareUpdateLabel: Bool {_storage._dfuPrepareUpdateLabel != nil}
|
|
548
538
|
/// Clears the value of `dfuPrepareUpdateLabel`. Subsequent reads from it will return its default value.
|
|
549
539
|
public mutating func clearDfuPrepareUpdateLabel() {_uniqueStorage()._dfuPrepareUpdateLabel = nil}
|
|
550
540
|
|
|
551
541
|
public var dfuStartBootloaderLabel: String {
|
|
552
|
-
get {
|
|
542
|
+
get {_storage._dfuStartBootloaderLabel ?? "Start Bootloader"}
|
|
553
543
|
set {_uniqueStorage()._dfuStartBootloaderLabel = newValue}
|
|
554
544
|
}
|
|
555
545
|
/// Returns true if `dfuStartBootloaderLabel` has been explicitly set.
|
|
556
|
-
public var hasDfuStartBootloaderLabel: Bool {
|
|
546
|
+
public var hasDfuStartBootloaderLabel: Bool {_storage._dfuStartBootloaderLabel != nil}
|
|
557
547
|
/// Clears the value of `dfuStartBootloaderLabel`. Subsequent reads from it will return its default value.
|
|
558
548
|
public mutating func clearDfuStartBootloaderLabel() {_uniqueStorage()._dfuStartBootloaderLabel = nil}
|
|
559
549
|
|
|
560
550
|
public var dfuInitializationLabel: String {
|
|
561
|
-
get {
|
|
551
|
+
get {_storage._dfuInitializationLabel ?? "DFU initialization"}
|
|
562
552
|
set {_uniqueStorage()._dfuInitializationLabel = newValue}
|
|
563
553
|
}
|
|
564
554
|
/// Returns true if `dfuInitializationLabel` has been explicitly set.
|
|
565
|
-
public var hasDfuInitializationLabel: Bool {
|
|
555
|
+
public var hasDfuInitializationLabel: Bool {_storage._dfuInitializationLabel != nil}
|
|
566
556
|
/// Clears the value of `dfuInitializationLabel`. Subsequent reads from it will return its default value.
|
|
567
557
|
public mutating func clearDfuInitializationLabel() {_uniqueStorage()._dfuInitializationLabel = nil}
|
|
568
558
|
|
|
569
559
|
public var dfuUpdateFwlabel: String {
|
|
570
|
-
get {
|
|
560
|
+
get {_storage._dfuUpdateFwlabel ?? "Update firmware"}
|
|
571
561
|
set {_uniqueStorage()._dfuUpdateFwlabel = newValue}
|
|
572
562
|
}
|
|
573
563
|
/// Returns true if `dfuUpdateFwlabel` has been explicitly set.
|
|
574
|
-
public var hasDfuUpdateFwlabel: Bool {
|
|
564
|
+
public var hasDfuUpdateFwlabel: Bool {_storage._dfuUpdateFwlabel != nil}
|
|
575
565
|
/// Clears the value of `dfuUpdateFwlabel`. Subsequent reads from it will return its default value.
|
|
576
566
|
public mutating func clearDfuUpdateFwlabel() {_uniqueStorage()._dfuUpdateFwlabel = nil}
|
|
577
567
|
|
|
578
568
|
public var waitForDeviceToRestartTaskLabel: String {
|
|
579
|
-
get {
|
|
569
|
+
get {_storage._waitForDeviceToRestartTaskLabel ?? "Wait for device to restart"}
|
|
580
570
|
set {_uniqueStorage()._waitForDeviceToRestartTaskLabel = newValue}
|
|
581
571
|
}
|
|
582
572
|
/// Returns true if `waitForDeviceToRestartTaskLabel` has been explicitly set.
|
|
583
|
-
public var hasWaitForDeviceToRestartTaskLabel: Bool {
|
|
573
|
+
public var hasWaitForDeviceToRestartTaskLabel: Bool {_storage._waitForDeviceToRestartTaskLabel != nil}
|
|
584
574
|
/// Clears the value of `waitForDeviceToRestartTaskLabel`. Subsequent reads from it will return its default value.
|
|
585
575
|
public mutating func clearWaitForDeviceToRestartTaskLabel() {_uniqueStorage()._waitForDeviceToRestartTaskLabel = nil}
|
|
586
576
|
|
|
587
577
|
public var accessTypeDefaultTime: String {
|
|
588
|
-
get {
|
|
578
|
+
get {_storage._accessTypeDefaultTime ?? "Default"}
|
|
589
579
|
set {_uniqueStorage()._accessTypeDefaultTime = newValue}
|
|
590
580
|
}
|
|
591
581
|
/// Returns true if `accessTypeDefaultTime` has been explicitly set.
|
|
592
|
-
public var hasAccessTypeDefaultTime: Bool {
|
|
582
|
+
public var hasAccessTypeDefaultTime: Bool {_storage._accessTypeDefaultTime != nil}
|
|
593
583
|
/// Clears the value of `accessTypeDefaultTime`. Subsequent reads from it will return its default value.
|
|
594
584
|
public mutating func clearAccessTypeDefaultTime() {_uniqueStorage()._accessTypeDefaultTime = nil}
|
|
595
585
|
|
|
596
586
|
public var accessTypeExtendedTime: String {
|
|
597
|
-
get {
|
|
587
|
+
get {_storage._accessTypeExtendedTime ?? "Extended"}
|
|
598
588
|
set {_uniqueStorage()._accessTypeExtendedTime = newValue}
|
|
599
589
|
}
|
|
600
590
|
/// Returns true if `accessTypeExtendedTime` has been explicitly set.
|
|
601
|
-
public var hasAccessTypeExtendedTime: Bool {
|
|
591
|
+
public var hasAccessTypeExtendedTime: Bool {_storage._accessTypeExtendedTime != nil}
|
|
602
592
|
/// Clears the value of `accessTypeExtendedTime`. Subsequent reads from it will return its default value.
|
|
603
593
|
public mutating func clearAccessTypeExtendedTime() {_uniqueStorage()._accessTypeExtendedTime = nil}
|
|
604
594
|
|
|
605
595
|
public var accessTypeToggle: String {
|
|
606
|
-
get {
|
|
596
|
+
get {_storage._accessTypeToggle ?? "Toggle"}
|
|
607
597
|
set {_uniqueStorage()._accessTypeToggle = newValue}
|
|
608
598
|
}
|
|
609
599
|
/// Returns true if `accessTypeToggle` has been explicitly set.
|
|
610
|
-
public var hasAccessTypeToggle: Bool {
|
|
600
|
+
public var hasAccessTypeToggle: Bool {_storage._accessTypeToggle != nil}
|
|
611
601
|
/// Clears the value of `accessTypeToggle`. Subsequent reads from it will return its default value.
|
|
612
602
|
public mutating func clearAccessTypeToggle() {_uniqueStorage()._accessTypeToggle = nil}
|
|
613
603
|
|
|
614
604
|
public var accessTypeClose: String {
|
|
615
|
-
get {
|
|
605
|
+
get {_storage._accessTypeClose ?? "Close"}
|
|
616
606
|
set {_uniqueStorage()._accessTypeClose = newValue}
|
|
617
607
|
}
|
|
618
608
|
/// Returns true if `accessTypeClose` has been explicitly set.
|
|
619
|
-
public var hasAccessTypeClose: Bool {
|
|
609
|
+
public var hasAccessTypeClose: Bool {_storage._accessTypeClose != nil}
|
|
620
610
|
/// Clears the value of `accessTypeClose`. Subsequent reads from it will return its default value.
|
|
621
611
|
public mutating func clearAccessTypeClose() {_uniqueStorage()._accessTypeClose = nil}
|
|
622
612
|
|
|
623
613
|
public var accessTypeCustomTime: String {
|
|
624
|
-
get {
|
|
614
|
+
get {_storage._accessTypeCustomTime ?? "Custom"}
|
|
625
615
|
set {_uniqueStorage()._accessTypeCustomTime = newValue}
|
|
626
616
|
}
|
|
627
617
|
/// Returns true if `accessTypeCustomTime` has been explicitly set.
|
|
628
|
-
public var hasAccessTypeCustomTime: Bool {
|
|
618
|
+
public var hasAccessTypeCustomTime: Bool {_storage._accessTypeCustomTime != nil}
|
|
629
619
|
/// Clears the value of `accessTypeCustomTime`. Subsequent reads from it will return its default value.
|
|
630
620
|
public mutating func clearAccessTypeCustomTime() {_uniqueStorage()._accessTypeCustomTime = nil}
|
|
631
621
|
|
|
632
622
|
public var openViaOssSoSelectAccessTypeTitle: String {
|
|
633
|
-
get {
|
|
623
|
+
get {_storage._openViaOssSoSelectAccessTypeTitle ?? "Select an access type"}
|
|
634
624
|
set {_uniqueStorage()._openViaOssSoSelectAccessTypeTitle = newValue}
|
|
635
625
|
}
|
|
636
626
|
/// Returns true if `openViaOssSoSelectAccessTypeTitle` has been explicitly set.
|
|
637
|
-
public var hasOpenViaOssSoSelectAccessTypeTitle: Bool {
|
|
627
|
+
public var hasOpenViaOssSoSelectAccessTypeTitle: Bool {_storage._openViaOssSoSelectAccessTypeTitle != nil}
|
|
638
628
|
/// Clears the value of `openViaOssSoSelectAccessTypeTitle`. Subsequent reads from it will return its default value.
|
|
639
629
|
public mutating func clearOpenViaOssSoSelectAccessTypeTitle() {_uniqueStorage()._openViaOssSoSelectAccessTypeTitle = nil}
|
|
640
630
|
|
|
641
631
|
public var openViaOssSoSelectAccessTypeMessage: String {
|
|
642
|
-
get {
|
|
632
|
+
get {_storage._openViaOssSoSelectAccessTypeMessage ?? "You have multiple access types available."}
|
|
643
633
|
set {_uniqueStorage()._openViaOssSoSelectAccessTypeMessage = newValue}
|
|
644
634
|
}
|
|
645
635
|
/// Returns true if `openViaOssSoSelectAccessTypeMessage` has been explicitly set.
|
|
646
|
-
public var hasOpenViaOssSoSelectAccessTypeMessage: Bool {
|
|
636
|
+
public var hasOpenViaOssSoSelectAccessTypeMessage: Bool {_storage._openViaOssSoSelectAccessTypeMessage != nil}
|
|
647
637
|
/// Clears the value of `openViaOssSoSelectAccessTypeMessage`. Subsequent reads from it will return its default value.
|
|
648
638
|
public mutating func clearOpenViaOssSoSelectAccessTypeMessage() {_uniqueStorage()._openViaOssSoSelectAccessTypeMessage = nil}
|
|
649
639
|
|
|
650
640
|
public var provisioningDone: String {
|
|
651
|
-
get {
|
|
641
|
+
get {_storage._provisioningDone ?? "Device %s has been provisioned. Please wait a few seconds for it to be ready for setup. If it doesn’t discover, try removing the batteries and restarting the lock."}
|
|
652
642
|
set {_uniqueStorage()._provisioningDone = newValue}
|
|
653
643
|
}
|
|
654
644
|
/// Returns true if `provisioningDone` has been explicitly set.
|
|
655
|
-
public var hasProvisioningDone: Bool {
|
|
645
|
+
public var hasProvisioningDone: Bool {_storage._provisioningDone != nil}
|
|
656
646
|
/// Clears the value of `provisioningDone`. Subsequent reads from it will return its default value.
|
|
657
647
|
public mutating func clearProvisioningDone() {_uniqueStorage()._provisioningDone = nil}
|
|
658
648
|
|
|
659
649
|
public var checkCurrentAvr: String {
|
|
660
|
-
get {
|
|
650
|
+
get {_storage._checkCurrentAvr ?? "Check current AVR"}
|
|
661
651
|
set {_uniqueStorage()._checkCurrentAvr = newValue}
|
|
662
652
|
}
|
|
663
653
|
/// Returns true if `checkCurrentAvr` has been explicitly set.
|
|
664
|
-
public var hasCheckCurrentAvr: Bool {
|
|
654
|
+
public var hasCheckCurrentAvr: Bool {_storage._checkCurrentAvr != nil}
|
|
665
655
|
/// Clears the value of `checkCurrentAvr`. Subsequent reads from it will return its default value.
|
|
666
656
|
public mutating func clearCheckCurrentAvr() {_uniqueStorage()._checkCurrentAvr = nil}
|
|
667
657
|
|
|
668
658
|
public var checkIfAvrupdateNedded: String {
|
|
669
|
-
get {
|
|
659
|
+
get {_storage._checkIfAvrupdateNedded ?? "Check If AVR needs to update"}
|
|
670
660
|
set {_uniqueStorage()._checkIfAvrupdateNedded = newValue}
|
|
671
661
|
}
|
|
672
662
|
/// Returns true if `checkIfAvrupdateNedded` has been explicitly set.
|
|
673
|
-
public var hasCheckIfAvrupdateNedded: Bool {
|
|
663
|
+
public var hasCheckIfAvrupdateNedded: Bool {_storage._checkIfAvrupdateNedded != nil}
|
|
674
664
|
/// Clears the value of `checkIfAvrupdateNedded`. Subsequent reads from it will return its default value.
|
|
675
665
|
public mutating func clearCheckIfAvrupdateNedded() {_uniqueStorage()._checkIfAvrupdateNedded = nil}
|
|
676
666
|
|
|
677
667
|
public var downloadAvr: String {
|
|
678
|
-
get {
|
|
668
|
+
get {_storage._downloadAvr ?? "Download AVR"}
|
|
679
669
|
set {_uniqueStorage()._downloadAvr = newValue}
|
|
680
670
|
}
|
|
681
671
|
/// Returns true if `downloadAvr` has been explicitly set.
|
|
682
|
-
public var hasDownloadAvr: Bool {
|
|
672
|
+
public var hasDownloadAvr: Bool {_storage._downloadAvr != nil}
|
|
683
673
|
/// Clears the value of `downloadAvr`. Subsequent reads from it will return its default value.
|
|
684
674
|
public mutating func clearDownloadAvr() {_uniqueStorage()._downloadAvr = nil}
|
|
685
675
|
|
|
686
676
|
public var downloadingAvr: String {
|
|
687
|
-
get {
|
|
677
|
+
get {_storage._downloadingAvr ?? "Downloading AVR %d.%d.%d"}
|
|
688
678
|
set {_uniqueStorage()._downloadingAvr = newValue}
|
|
689
679
|
}
|
|
690
680
|
/// Returns true if `downloadingAvr` has been explicitly set.
|
|
691
|
-
public var hasDownloadingAvr: Bool {
|
|
681
|
+
public var hasDownloadingAvr: Bool {_storage._downloadingAvr != nil}
|
|
692
682
|
/// Clears the value of `downloadingAvr`. Subsequent reads from it will return its default value.
|
|
693
683
|
public mutating func clearDownloadingAvr() {_uniqueStorage()._downloadingAvr = nil}
|
|
694
684
|
|
|
695
685
|
public var updateAvr: String {
|
|
696
|
-
get {
|
|
686
|
+
get {_storage._updateAvr ?? "Update AVR"}
|
|
697
687
|
set {_uniqueStorage()._updateAvr = newValue}
|
|
698
688
|
}
|
|
699
689
|
/// Returns true if `updateAvr` has been explicitly set.
|
|
700
|
-
public var hasUpdateAvr: Bool {
|
|
690
|
+
public var hasUpdateAvr: Bool {_storage._updateAvr != nil}
|
|
701
691
|
/// Clears the value of `updateAvr`. Subsequent reads from it will return its default value.
|
|
702
692
|
public mutating func clearUpdateAvr() {_uniqueStorage()._updateAvr = nil}
|
|
703
693
|
|
|
704
694
|
public var avrIsAlreadyUpToDate: String {
|
|
705
|
-
get {
|
|
695
|
+
get {_storage._avrIsAlreadyUpToDate ?? "AVR is already up to date"}
|
|
706
696
|
set {_uniqueStorage()._avrIsAlreadyUpToDate = newValue}
|
|
707
697
|
}
|
|
708
698
|
/// Returns true if `avrIsAlreadyUpToDate` has been explicitly set.
|
|
709
|
-
public var hasAvrIsAlreadyUpToDate: Bool {
|
|
699
|
+
public var hasAvrIsAlreadyUpToDate: Bool {_storage._avrIsAlreadyUpToDate != nil}
|
|
710
700
|
/// Clears the value of `avrIsAlreadyUpToDate`. Subsequent reads from it will return its default value.
|
|
711
701
|
public mutating func clearAvrIsAlreadyUpToDate() {_uniqueStorage()._avrIsAlreadyUpToDate = nil}
|
|
712
702
|
|
|
@@ -723,29 +713,29 @@ public struct BlueDeviceDetailsBluetooth: Sendable {
|
|
|
723
713
|
// methods supported on all messages.
|
|
724
714
|
|
|
725
715
|
public var rssi: Int32 {
|
|
726
|
-
get {
|
|
716
|
+
get {_rssi ?? 0}
|
|
727
717
|
set {_rssi = newValue}
|
|
728
718
|
}
|
|
729
719
|
/// Returns true if `rssi` has been explicitly set.
|
|
730
|
-
public var hasRssi: Bool {
|
|
720
|
+
public var hasRssi: Bool {self._rssi != nil}
|
|
731
721
|
/// Clears the value of `rssi`. Subsequent reads from it will return its default value.
|
|
732
722
|
public mutating func clearRssi() {self._rssi = nil}
|
|
733
723
|
|
|
734
724
|
public var txPower: Int32 {
|
|
735
|
-
get {
|
|
725
|
+
get {_txPower ?? 0}
|
|
736
726
|
set {_txPower = newValue}
|
|
737
727
|
}
|
|
738
728
|
/// Returns true if `txPower` has been explicitly set.
|
|
739
|
-
public var hasTxPower: Bool {
|
|
729
|
+
public var hasTxPower: Bool {self._txPower != nil}
|
|
740
730
|
/// Clears the value of `txPower`. Subsequent reads from it will return its default value.
|
|
741
731
|
public mutating func clearTxPower() {self._txPower = nil}
|
|
742
732
|
|
|
743
733
|
public var isIbeacon: Bool {
|
|
744
|
-
get {
|
|
734
|
+
get {_isIbeacon ?? false}
|
|
745
735
|
set {_isIbeacon = newValue}
|
|
746
736
|
}
|
|
747
737
|
/// Returns true if `isIbeacon` has been explicitly set.
|
|
748
|
-
public var hasIsIbeacon: Bool {
|
|
738
|
+
public var hasIsIbeacon: Bool {self._isIbeacon != nil}
|
|
749
739
|
/// Clears the value of `isIbeacon`. Subsequent reads from it will return its default value.
|
|
750
740
|
public mutating func clearIsIbeacon() {self._isIbeacon = nil}
|
|
751
741
|
|
|
@@ -764,11 +754,11 @@ public struct BlueDeviceDetailsUWB: Sendable {
|
|
|
764
754
|
// methods supported on all messages.
|
|
765
755
|
|
|
766
756
|
public var notUsed: Bool {
|
|
767
|
-
get {
|
|
757
|
+
get {_notUsed ?? false}
|
|
768
758
|
set {_notUsed = newValue}
|
|
769
759
|
}
|
|
770
760
|
/// Returns true if `notUsed` has been explicitly set.
|
|
771
|
-
public var hasNotUsed: Bool {
|
|
761
|
+
public var hasNotUsed: Bool {self._notUsed != nil}
|
|
772
762
|
/// Clears the value of `notUsed`. Subsequent reads from it will return its default value.
|
|
773
763
|
public mutating func clearNotUsed() {self._notUsed = nil}
|
|
774
764
|
|
|
@@ -785,38 +775,38 @@ public struct BlueDeviceInfo: Sendable {
|
|
|
785
775
|
// methods supported on all messages.
|
|
786
776
|
|
|
787
777
|
public var deviceType: BlueDeviceType {
|
|
788
|
-
get {
|
|
778
|
+
get {_deviceType ?? .bluetoothDevice}
|
|
789
779
|
set {_deviceType = newValue}
|
|
790
780
|
}
|
|
791
781
|
/// Returns true if `deviceType` has been explicitly set.
|
|
792
|
-
public var hasDeviceType: Bool {
|
|
782
|
+
public var hasDeviceType: Bool {self._deviceType != nil}
|
|
793
783
|
/// Clears the value of `deviceType`. Subsequent reads from it will return its default value.
|
|
794
784
|
public mutating func clearDeviceType() {self._deviceType = nil}
|
|
795
785
|
|
|
796
786
|
public var deviceID: String {
|
|
797
|
-
get {
|
|
787
|
+
get {_deviceID ?? String()}
|
|
798
788
|
set {_deviceID = newValue}
|
|
799
789
|
}
|
|
800
790
|
/// Returns true if `deviceID` has been explicitly set.
|
|
801
|
-
public var hasDeviceID: Bool {
|
|
791
|
+
public var hasDeviceID: Bool {self._deviceID != nil}
|
|
802
792
|
/// Clears the value of `deviceID`. Subsequent reads from it will return its default value.
|
|
803
793
|
public mutating func clearDeviceID() {self._deviceID = nil}
|
|
804
794
|
|
|
805
795
|
public var distanceMeters: Float {
|
|
806
|
-
get {
|
|
796
|
+
get {_distanceMeters ?? 0}
|
|
807
797
|
set {_distanceMeters = newValue}
|
|
808
798
|
}
|
|
809
799
|
/// Returns true if `distanceMeters` has been explicitly set.
|
|
810
|
-
public var hasDistanceMeters: Bool {
|
|
800
|
+
public var hasDistanceMeters: Bool {self._distanceMeters != nil}
|
|
811
801
|
/// Clears the value of `distanceMeters`. Subsequent reads from it will return its default value.
|
|
812
802
|
public mutating func clearDistanceMeters() {self._distanceMeters = nil}
|
|
813
803
|
|
|
814
804
|
public var manufacturerInfo: BlueBleManufacturerInfo {
|
|
815
|
-
get {
|
|
805
|
+
get {_manufacturerInfo ?? BlueBleManufacturerInfo()}
|
|
816
806
|
set {_manufacturerInfo = newValue}
|
|
817
807
|
}
|
|
818
808
|
/// Returns true if `manufacturerInfo` has been explicitly set.
|
|
819
|
-
public var hasManufacturerInfo: Bool {
|
|
809
|
+
public var hasManufacturerInfo: Bool {self._manufacturerInfo != nil}
|
|
820
810
|
/// Clears the value of `manufacturerInfo`. Subsequent reads from it will return its default value.
|
|
821
811
|
public mutating func clearManufacturerInfo() {self._manufacturerInfo = nil}
|
|
822
812
|
|
|
@@ -876,134 +866,124 @@ public struct BlueIdentity: @unchecked Sendable {
|
|
|
876
866
|
// methods supported on all messages.
|
|
877
867
|
|
|
878
868
|
public var identityID: String {
|
|
879
|
-
get {
|
|
869
|
+
get {_storage._identityID ?? String()}
|
|
880
870
|
set {_uniqueStorage()._identityID = newValue}
|
|
881
871
|
}
|
|
882
872
|
/// Returns true if `identityID` has been explicitly set.
|
|
883
|
-
public var hasIdentityID: Bool {
|
|
873
|
+
public var hasIdentityID: Bool {_storage._identityID != nil}
|
|
884
874
|
/// Clears the value of `identityID`. Subsequent reads from it will return its default value.
|
|
885
875
|
public mutating func clearIdentityID() {_uniqueStorage()._identityID = nil}
|
|
886
876
|
|
|
887
877
|
/// @TODO: Keep it until we have updated all places in both iOS and Android SDK.
|
|
888
878
|
/// This should be renamed to BlueIdentityRole later on.
|
|
889
879
|
public var role: BlueCredentialType {
|
|
890
|
-
get {
|
|
880
|
+
get {_storage._role ?? .regular}
|
|
891
881
|
set {_uniqueStorage()._role = newValue}
|
|
892
882
|
}
|
|
893
883
|
/// Returns true if `role` has been explicitly set.
|
|
894
|
-
public var hasRole: Bool {
|
|
884
|
+
public var hasRole: Bool {_storage._role != nil}
|
|
895
885
|
/// Clears the value of `role`. Subsequent reads from it will return its default value.
|
|
896
886
|
public mutating func clearRole() {_uniqueStorage()._role = nil}
|
|
897
887
|
|
|
898
888
|
public var name: String {
|
|
899
|
-
get {
|
|
889
|
+
get {_storage._name ?? String()}
|
|
900
890
|
set {_uniqueStorage()._name = newValue}
|
|
901
891
|
}
|
|
902
892
|
/// Returns true if `name` has been explicitly set.
|
|
903
|
-
public var hasName: Bool {
|
|
893
|
+
public var hasName: Bool {_storage._name != nil}
|
|
904
894
|
/// Clears the value of `name`. Subsequent reads from it will return its default value.
|
|
905
895
|
public mutating func clearName() {_uniqueStorage()._name = nil}
|
|
906
896
|
|
|
907
897
|
public var description_p: String {
|
|
908
|
-
get {
|
|
898
|
+
get {_storage._description_p ?? String()}
|
|
909
899
|
set {_uniqueStorage()._description_p = newValue}
|
|
910
900
|
}
|
|
911
901
|
/// Returns true if `description_p` has been explicitly set.
|
|
912
|
-
public var hasDescription_p: Bool {
|
|
902
|
+
public var hasDescription_p: Bool {_storage._description_p != nil}
|
|
913
903
|
/// Clears the value of `description_p`. Subsequent reads from it will return its default value.
|
|
914
904
|
public mutating func clearDescription_p() {_uniqueStorage()._description_p = nil}
|
|
915
905
|
|
|
916
906
|
public var receiverName: String {
|
|
917
|
-
get {
|
|
907
|
+
get {_storage._receiverName ?? String()}
|
|
918
908
|
set {_uniqueStorage()._receiverName = newValue}
|
|
919
909
|
}
|
|
920
910
|
/// Returns true if `receiverName` has been explicitly set.
|
|
921
|
-
public var hasReceiverName: Bool {
|
|
911
|
+
public var hasReceiverName: Bool {_storage._receiverName != nil}
|
|
922
912
|
/// Clears the value of `receiverName`. Subsequent reads from it will return its default value.
|
|
923
913
|
public mutating func clearReceiverName() {_uniqueStorage()._receiverName = nil}
|
|
924
914
|
|
|
925
915
|
public var validFrom: BlueLocalTimestamp {
|
|
926
|
-
get {
|
|
916
|
+
get {_storage._validFrom ?? BlueLocalTimestamp()}
|
|
927
917
|
set {_uniqueStorage()._validFrom = newValue}
|
|
928
918
|
}
|
|
929
919
|
/// Returns true if `validFrom` has been explicitly set.
|
|
930
|
-
public var hasValidFrom: Bool {
|
|
920
|
+
public var hasValidFrom: Bool {_storage._validFrom != nil}
|
|
931
921
|
/// Clears the value of `validFrom`. Subsequent reads from it will return its default value.
|
|
932
922
|
public mutating func clearValidFrom() {_uniqueStorage()._validFrom = nil}
|
|
933
923
|
|
|
934
924
|
public var validTo: BlueLocalTimestamp {
|
|
935
|
-
get {
|
|
925
|
+
get {_storage._validTo ?? BlueLocalTimestamp()}
|
|
936
926
|
set {_uniqueStorage()._validTo = newValue}
|
|
937
927
|
}
|
|
938
928
|
/// Returns true if `validTo` has been explicitly set.
|
|
939
|
-
public var hasValidTo: Bool {
|
|
929
|
+
public var hasValidTo: Bool {_storage._validTo != nil}
|
|
940
930
|
/// Clears the value of `validTo`. Subsequent reads from it will return its default value.
|
|
941
931
|
public mutating func clearValidTo() {_uniqueStorage()._validTo = nil}
|
|
942
932
|
|
|
943
933
|
public var organization: String {
|
|
944
|
-
get {
|
|
934
|
+
get {_storage._organization ?? String()}
|
|
945
935
|
set {_uniqueStorage()._organization = newValue}
|
|
946
936
|
}
|
|
947
937
|
/// Returns true if `organization` has been explicitly set.
|
|
948
|
-
public var hasOrganization: Bool {
|
|
938
|
+
public var hasOrganization: Bool {_storage._organization != nil}
|
|
949
939
|
/// Clears the value of `organization`. Subsequent reads from it will return its default value.
|
|
950
940
|
public mutating func clearOrganization() {_uniqueStorage()._organization = nil}
|
|
951
941
|
|
|
952
942
|
public var organizationName: String {
|
|
953
|
-
get {
|
|
943
|
+
get {_storage._organizationName ?? String()}
|
|
954
944
|
set {_uniqueStorage()._organizationName = newValue}
|
|
955
945
|
}
|
|
956
946
|
/// Returns true if `organizationName` has been explicitly set.
|
|
957
|
-
public var hasOrganizationName: Bool {
|
|
947
|
+
public var hasOrganizationName: Bool {_storage._organizationName != nil}
|
|
958
948
|
/// Clears the value of `organizationName`. Subsequent reads from it will return its default value.
|
|
959
949
|
public mutating func clearOrganizationName() {_uniqueStorage()._organizationName = nil}
|
|
960
950
|
|
|
961
951
|
public var siteID: Int32 {
|
|
962
|
-
get {
|
|
952
|
+
get {_storage._siteID ?? 0}
|
|
963
953
|
set {_uniqueStorage()._siteID = newValue}
|
|
964
954
|
}
|
|
965
955
|
/// Returns true if `siteID` has been explicitly set.
|
|
966
|
-
public var hasSiteID: Bool {
|
|
956
|
+
public var hasSiteID: Bool {_storage._siteID != nil}
|
|
967
957
|
/// Clears the value of `siteID`. Subsequent reads from it will return its default value.
|
|
968
958
|
public mutating func clearSiteID() {_uniqueStorage()._siteID = nil}
|
|
969
959
|
|
|
970
960
|
public var siteName: String {
|
|
971
|
-
get {
|
|
961
|
+
get {_storage._siteName ?? String()}
|
|
972
962
|
set {_uniqueStorage()._siteName = newValue}
|
|
973
963
|
}
|
|
974
964
|
/// Returns true if `siteName` has been explicitly set.
|
|
975
|
-
public var hasSiteName: Bool {
|
|
965
|
+
public var hasSiteName: Bool {_storage._siteName != nil}
|
|
976
966
|
/// Clears the value of `siteName`. Subsequent reads from it will return its default value.
|
|
977
967
|
public mutating func clearSiteName() {_uniqueStorage()._siteName = nil}
|
|
978
968
|
|
|
979
969
|
public var privateKey: Data {
|
|
980
|
-
get {
|
|
970
|
+
get {_storage._privateKey ?? Data()}
|
|
981
971
|
set {_uniqueStorage()._privateKey = newValue}
|
|
982
972
|
}
|
|
983
973
|
/// Returns true if `privateKey` has been explicitly set.
|
|
984
|
-
public var hasPrivateKey: Bool {
|
|
974
|
+
public var hasPrivateKey: Bool {_storage._privateKey != nil}
|
|
985
975
|
/// Clears the value of `privateKey`. Subsequent reads from it will return its default value.
|
|
986
976
|
public mutating func clearPrivateKey() {_uniqueStorage()._privateKey = nil}
|
|
987
977
|
|
|
988
978
|
public var status: String {
|
|
989
|
-
get {
|
|
979
|
+
get {_storage._status ?? String()}
|
|
990
980
|
set {_uniqueStorage()._status = newValue}
|
|
991
981
|
}
|
|
992
982
|
/// Returns true if `status` has been explicitly set.
|
|
993
|
-
public var hasStatus: Bool {
|
|
983
|
+
public var hasStatus: Bool {_storage._status != nil}
|
|
994
984
|
/// Clears the value of `status`. Subsequent reads from it will return its default value.
|
|
995
985
|
public mutating func clearStatus() {_uniqueStorage()._status = nil}
|
|
996
986
|
|
|
997
|
-
/// validity after syncing the identity
|
|
998
|
-
public var syncedUntil: UInt64 {
|
|
999
|
-
get {return _storage._syncedUntil ?? 0}
|
|
1000
|
-
set {_uniqueStorage()._syncedUntil = newValue}
|
|
1001
|
-
}
|
|
1002
|
-
/// Returns true if `syncedUntil` has been explicitly set.
|
|
1003
|
-
public var hasSyncedUntil: Bool {return _storage._syncedUntil != nil}
|
|
1004
|
-
/// Clears the value of `syncedUntil`. Subsequent reads from it will return its default value.
|
|
1005
|
-
public mutating func clearSyncedUntil() {_uniqueStorage()._syncedUntil = nil}
|
|
1006
|
-
|
|
1007
987
|
public var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
1008
988
|
|
|
1009
989
|
public init() {}
|
|
@@ -1029,38 +1009,38 @@ public struct BlueAccessDevice: Sendable {
|
|
|
1029
1009
|
// methods supported on all messages.
|
|
1030
1010
|
|
|
1031
1011
|
public var deviceID: String {
|
|
1032
|
-
get {
|
|
1012
|
+
get {_deviceID ?? String()}
|
|
1033
1013
|
set {_deviceID = newValue}
|
|
1034
1014
|
}
|
|
1035
1015
|
/// Returns true if `deviceID` has been explicitly set.
|
|
1036
|
-
public var hasDeviceID: Bool {
|
|
1016
|
+
public var hasDeviceID: Bool {self._deviceID != nil}
|
|
1037
1017
|
/// Clears the value of `deviceID`. Subsequent reads from it will return its default value.
|
|
1038
1018
|
public mutating func clearDeviceID() {self._deviceID = nil}
|
|
1039
1019
|
|
|
1040
1020
|
public var objectName: String {
|
|
1041
|
-
get {
|
|
1021
|
+
get {_objectName ?? String()}
|
|
1042
1022
|
set {_objectName = newValue}
|
|
1043
1023
|
}
|
|
1044
1024
|
/// Returns true if `objectName` has been explicitly set.
|
|
1045
|
-
public var hasObjectName: Bool {
|
|
1025
|
+
public var hasObjectName: Bool {self._objectName != nil}
|
|
1046
1026
|
/// Clears the value of `objectName`. Subsequent reads from it will return its default value.
|
|
1047
1027
|
public mutating func clearObjectName() {self._objectName = nil}
|
|
1048
1028
|
|
|
1049
1029
|
public var objectID: Int32 {
|
|
1050
|
-
get {
|
|
1030
|
+
get {_objectID ?? 0}
|
|
1051
1031
|
set {_objectID = newValue}
|
|
1052
1032
|
}
|
|
1053
1033
|
/// Returns true if `objectID` has been explicitly set.
|
|
1054
|
-
public var hasObjectID: Bool {
|
|
1034
|
+
public var hasObjectID: Bool {self._objectID != nil}
|
|
1055
1035
|
/// Clears the value of `objectID`. Subsequent reads from it will return its default value.
|
|
1056
1036
|
public mutating func clearObjectID() {self._objectID = nil}
|
|
1057
1037
|
|
|
1058
1038
|
public var deviceStatus: String {
|
|
1059
|
-
get {
|
|
1039
|
+
get {_deviceStatus ?? String()}
|
|
1060
1040
|
set {_deviceStatus = newValue}
|
|
1061
1041
|
}
|
|
1062
1042
|
/// Returns true if `deviceStatus` has been explicitly set.
|
|
1063
|
-
public var hasDeviceStatus: Bool {
|
|
1043
|
+
public var hasDeviceStatus: Bool {self._deviceStatus != nil}
|
|
1064
1044
|
/// Clears the value of `deviceStatus`. Subsequent reads from it will return its default value.
|
|
1065
1045
|
public mutating func clearDeviceStatus() {self._deviceStatus = nil}
|
|
1066
1046
|
|
|
@@ -1092,38 +1072,38 @@ public struct BlueAccessObject: Sendable {
|
|
|
1092
1072
|
// methods supported on all messages.
|
|
1093
1073
|
|
|
1094
1074
|
public var id: String {
|
|
1095
|
-
get {
|
|
1075
|
+
get {_id ?? String()}
|
|
1096
1076
|
set {_id = newValue}
|
|
1097
1077
|
}
|
|
1098
1078
|
/// Returns true if `id` has been explicitly set.
|
|
1099
|
-
public var hasID: Bool {
|
|
1079
|
+
public var hasID: Bool {self._id != nil}
|
|
1100
1080
|
/// Clears the value of `id`. Subsequent reads from it will return its default value.
|
|
1101
1081
|
public mutating func clearID() {self._id = nil}
|
|
1102
1082
|
|
|
1103
1083
|
public var objectID: Int32 {
|
|
1104
|
-
get {
|
|
1084
|
+
get {_objectID ?? 0}
|
|
1105
1085
|
set {_objectID = newValue}
|
|
1106
1086
|
}
|
|
1107
1087
|
/// Returns true if `objectID` has been explicitly set.
|
|
1108
|
-
public var hasObjectID: Bool {
|
|
1088
|
+
public var hasObjectID: Bool {self._objectID != nil}
|
|
1109
1089
|
/// Clears the value of `objectID`. Subsequent reads from it will return its default value.
|
|
1110
1090
|
public mutating func clearObjectID() {self._objectID = nil}
|
|
1111
1091
|
|
|
1112
1092
|
public var name: String {
|
|
1113
|
-
get {
|
|
1093
|
+
get {_name ?? String()}
|
|
1114
1094
|
set {_name = newValue}
|
|
1115
1095
|
}
|
|
1116
1096
|
/// Returns true if `name` has been explicitly set.
|
|
1117
|
-
public var hasName: Bool {
|
|
1097
|
+
public var hasName: Bool {self._name != nil}
|
|
1118
1098
|
/// Clears the value of `name`. Subsequent reads from it will return its default value.
|
|
1119
1099
|
public mutating func clearName() {self._name = nil}
|
|
1120
1100
|
|
|
1121
1101
|
public var description_p: String {
|
|
1122
|
-
get {
|
|
1102
|
+
get {_description_p ?? String()}
|
|
1123
1103
|
set {_description_p = newValue}
|
|
1124
1104
|
}
|
|
1125
1105
|
/// Returns true if `description_p` has been explicitly set.
|
|
1126
|
-
public var hasDescription_p: Bool {
|
|
1106
|
+
public var hasDescription_p: Bool {self._description_p != nil}
|
|
1127
1107
|
/// Clears the value of `description_p`. Subsequent reads from it will return its default value.
|
|
1128
1108
|
public mutating func clearDescription_p() {self._description_p = nil}
|
|
1129
1109
|
|
|
@@ -1157,47 +1137,47 @@ public struct BlueHardwareInfo: Sendable {
|
|
|
1157
1137
|
// methods supported on all messages.
|
|
1158
1138
|
|
|
1159
1139
|
public var name: String {
|
|
1160
|
-
get {
|
|
1140
|
+
get {_name ?? String()}
|
|
1161
1141
|
set {_name = newValue}
|
|
1162
1142
|
}
|
|
1163
1143
|
/// Returns true if `name` has been explicitly set.
|
|
1164
|
-
public var hasName: Bool {
|
|
1144
|
+
public var hasName: Bool {self._name != nil}
|
|
1165
1145
|
/// Clears the value of `name`. Subsequent reads from it will return its default value.
|
|
1166
1146
|
public mutating func clearName() {self._name = nil}
|
|
1167
1147
|
|
|
1168
1148
|
public var vendor: String {
|
|
1169
|
-
get {
|
|
1149
|
+
get {_vendor ?? String()}
|
|
1170
1150
|
set {_vendor = newValue}
|
|
1171
1151
|
}
|
|
1172
1152
|
/// Returns true if `vendor` has been explicitly set.
|
|
1173
|
-
public var hasVendor: Bool {
|
|
1153
|
+
public var hasVendor: Bool {self._vendor != nil}
|
|
1174
1154
|
/// Clears the value of `vendor`. Subsequent reads from it will return its default value.
|
|
1175
1155
|
public mutating func clearVendor() {self._vendor = nil}
|
|
1176
1156
|
|
|
1177
1157
|
public var vendorName: String {
|
|
1178
|
-
get {
|
|
1158
|
+
get {_vendorName ?? String()}
|
|
1179
1159
|
set {_vendorName = newValue}
|
|
1180
1160
|
}
|
|
1181
1161
|
/// Returns true if `vendorName` has been explicitly set.
|
|
1182
|
-
public var hasVendorName: Bool {
|
|
1162
|
+
public var hasVendorName: Bool {self._vendorName != nil}
|
|
1183
1163
|
/// Clears the value of `vendorName`. Subsequent reads from it will return its default value.
|
|
1184
1164
|
public mutating func clearVendorName() {self._vendorName = nil}
|
|
1185
1165
|
|
|
1186
1166
|
public var version: UInt32 {
|
|
1187
|
-
get {
|
|
1167
|
+
get {_version ?? 0}
|
|
1188
1168
|
set {_version = newValue}
|
|
1189
1169
|
}
|
|
1190
1170
|
/// Returns true if `version` has been explicitly set.
|
|
1191
|
-
public var hasVersion: Bool {
|
|
1171
|
+
public var hasVersion: Bool {self._version != nil}
|
|
1192
1172
|
/// Clears the value of `version`. Subsequent reads from it will return its default value.
|
|
1193
1173
|
public mutating func clearVersion() {self._version = nil}
|
|
1194
1174
|
|
|
1195
1175
|
public var type: BlueHardwareType {
|
|
1196
|
-
get {
|
|
1176
|
+
get {_type ?? .unknownHardware}
|
|
1197
1177
|
set {_type = newValue}
|
|
1198
1178
|
}
|
|
1199
1179
|
/// Returns true if `type` has been explicitly set.
|
|
1200
|
-
public var hasType: Bool {
|
|
1180
|
+
public var hasType: Bool {self._type != nil}
|
|
1201
1181
|
/// Clears the value of `type`. Subsequent reads from it will return its default value.
|
|
1202
1182
|
public mutating func clearType() {self._type = nil}
|
|
1203
1183
|
|
|
@@ -1218,47 +1198,47 @@ public struct BlueSystemStatusExt: Sendable {
|
|
|
1218
1198
|
// methods supported on all messages.
|
|
1219
1199
|
|
|
1220
1200
|
public var status: BlueSystemStatus {
|
|
1221
|
-
get {
|
|
1201
|
+
get {_status ?? BlueSystemStatus()}
|
|
1222
1202
|
set {_status = newValue}
|
|
1223
1203
|
}
|
|
1224
1204
|
/// Returns true if `status` has been explicitly set.
|
|
1225
|
-
public var hasStatus: Bool {
|
|
1205
|
+
public var hasStatus: Bool {self._status != nil}
|
|
1226
1206
|
/// Clears the value of `status`. Subsequent reads from it will return its default value.
|
|
1227
1207
|
public mutating func clearStatus() {self._status = nil}
|
|
1228
1208
|
|
|
1229
1209
|
public var newFirmwareVersionAvailable: Bool {
|
|
1230
|
-
get {
|
|
1210
|
+
get {_newFirmwareVersionAvailable ?? false}
|
|
1231
1211
|
set {_newFirmwareVersionAvailable = newValue}
|
|
1232
1212
|
}
|
|
1233
1213
|
/// Returns true if `newFirmwareVersionAvailable` has been explicitly set.
|
|
1234
|
-
public var hasNewFirmwareVersionAvailable: Bool {
|
|
1214
|
+
public var hasNewFirmwareVersionAvailable: Bool {self._newFirmwareVersionAvailable != nil}
|
|
1235
1215
|
/// Clears the value of `newFirmwareVersionAvailable`. Subsequent reads from it will return its default value.
|
|
1236
1216
|
public mutating func clearNewFirmwareVersionAvailable() {self._newFirmwareVersionAvailable = nil}
|
|
1237
1217
|
|
|
1238
1218
|
public var newTestFirmwareVersionAvailable: Bool {
|
|
1239
|
-
get {
|
|
1219
|
+
get {_newTestFirmwareVersionAvailable ?? false}
|
|
1240
1220
|
set {_newTestFirmwareVersionAvailable = newValue}
|
|
1241
1221
|
}
|
|
1242
1222
|
/// Returns true if `newTestFirmwareVersionAvailable` has been explicitly set.
|
|
1243
|
-
public var hasNewTestFirmwareVersionAvailable: Bool {
|
|
1223
|
+
public var hasNewTestFirmwareVersionAvailable: Bool {self._newTestFirmwareVersionAvailable != nil}
|
|
1244
1224
|
/// Clears the value of `newTestFirmwareVersionAvailable`. Subsequent reads from it will return its default value.
|
|
1245
1225
|
public mutating func clearNewTestFirmwareVersionAvailable() {self._newTestFirmwareVersionAvailable = nil}
|
|
1246
1226
|
|
|
1247
1227
|
public var newConfigurationAvailable: Bool {
|
|
1248
|
-
get {
|
|
1228
|
+
get {_newConfigurationAvailable ?? false}
|
|
1249
1229
|
set {_newConfigurationAvailable = newValue}
|
|
1250
1230
|
}
|
|
1251
1231
|
/// Returns true if `newConfigurationAvailable` has been explicitly set.
|
|
1252
|
-
public var hasNewConfigurationAvailable: Bool {
|
|
1232
|
+
public var hasNewConfigurationAvailable: Bool {self._newConfigurationAvailable != nil}
|
|
1253
1233
|
/// Clears the value of `newConfigurationAvailable`. Subsequent reads from it will return its default value.
|
|
1254
1234
|
public mutating func clearNewConfigurationAvailable() {self._newConfigurationAvailable = nil}
|
|
1255
1235
|
|
|
1256
1236
|
public var hardwareInfo: BlueHardwareInfo {
|
|
1257
|
-
get {
|
|
1237
|
+
get {_hardwareInfo ?? BlueHardwareInfo()}
|
|
1258
1238
|
set {_hardwareInfo = newValue}
|
|
1259
1239
|
}
|
|
1260
1240
|
/// Returns true if `hardwareInfo` has been explicitly set.
|
|
1261
|
-
public var hasHardwareInfo: Bool {
|
|
1241
|
+
public var hasHardwareInfo: Bool {self._hardwareInfo != nil}
|
|
1262
1242
|
/// Clears the value of `hardwareInfo`. Subsequent reads from it will return its default value.
|
|
1263
1243
|
public mutating func clearHardwareInfo() {self._hardwareInfo = nil}
|
|
1264
1244
|
|
|
@@ -1279,31 +1259,31 @@ public struct BlueRefreshOssSoIdentity: Sendable {
|
|
|
1279
1259
|
// methods supported on all messages.
|
|
1280
1260
|
|
|
1281
1261
|
public var identityID: String {
|
|
1282
|
-
get {
|
|
1262
|
+
get {_identityID ?? String()}
|
|
1283
1263
|
set {_identityID = newValue}
|
|
1284
1264
|
}
|
|
1285
1265
|
/// Returns true if `identityID` has been explicitly set.
|
|
1286
|
-
public var hasIdentityID: Bool {
|
|
1266
|
+
public var hasIdentityID: Bool {self._identityID != nil}
|
|
1287
1267
|
/// Clears the value of `identityID`. Subsequent reads from it will return its default value.
|
|
1288
1268
|
public mutating func clearIdentityID() {self._identityID = nil}
|
|
1289
1269
|
|
|
1290
1270
|
/// @TODO: Keep it until we have updated all places in both iOS and Android SDK.
|
|
1291
1271
|
/// This should be renamed to BlueRefreshOssSoIdentityStatus later on.
|
|
1292
1272
|
public var status: BlueRefreshOssSoCredentialStatus {
|
|
1293
|
-
get {
|
|
1273
|
+
get {_status ?? .succeeded}
|
|
1294
1274
|
set {_status = newValue}
|
|
1295
1275
|
}
|
|
1296
1276
|
/// Returns true if `status` has been explicitly set.
|
|
1297
|
-
public var hasStatus: Bool {
|
|
1277
|
+
public var hasStatus: Bool {self._status != nil}
|
|
1298
1278
|
/// Clears the value of `status`. Subsequent reads from it will return its default value.
|
|
1299
1279
|
public mutating func clearStatus() {self._status = nil}
|
|
1300
1280
|
|
|
1301
1281
|
public var configuration: BlueOssSoConfiguration {
|
|
1302
|
-
get {
|
|
1282
|
+
get {_configuration ?? BlueOssSoConfiguration()}
|
|
1303
1283
|
set {_configuration = newValue}
|
|
1304
1284
|
}
|
|
1305
1285
|
/// Returns true if `configuration` has been explicitly set.
|
|
1306
|
-
public var hasConfiguration: Bool {
|
|
1286
|
+
public var hasConfiguration: Bool {self._configuration != nil}
|
|
1307
1287
|
/// Clears the value of `configuration`. Subsequent reads from it will return its default value.
|
|
1308
1288
|
public mutating func clearConfiguration() {self._configuration = nil}
|
|
1309
1289
|
|
|
@@ -1334,29 +1314,29 @@ public struct BlueSynchronizeIdentity: Sendable {
|
|
|
1334
1314
|
// methods supported on all messages.
|
|
1335
1315
|
|
|
1336
1316
|
public var identityID: String {
|
|
1337
|
-
get {
|
|
1317
|
+
get {_identityID ?? String()}
|
|
1338
1318
|
set {_identityID = newValue}
|
|
1339
1319
|
}
|
|
1340
1320
|
/// Returns true if `identityID` has been explicitly set.
|
|
1341
|
-
public var hasIdentityID: Bool {
|
|
1321
|
+
public var hasIdentityID: Bool {self._identityID != nil}
|
|
1342
1322
|
/// Clears the value of `identityID`. Subsequent reads from it will return its default value.
|
|
1343
1323
|
public mutating func clearIdentityID() {self._identityID = nil}
|
|
1344
1324
|
|
|
1345
1325
|
public var returnCode: BlueReturnCode {
|
|
1346
|
-
get {
|
|
1326
|
+
get {_returnCode ?? .ok}
|
|
1347
1327
|
set {_returnCode = newValue}
|
|
1348
1328
|
}
|
|
1349
1329
|
/// Returns true if `returnCode` has been explicitly set.
|
|
1350
|
-
public var hasReturnCode: Bool {
|
|
1330
|
+
public var hasReturnCode: Bool {self._returnCode != nil}
|
|
1351
1331
|
/// Clears the value of `returnCode`. Subsequent reads from it will return its default value.
|
|
1352
1332
|
public mutating func clearReturnCode() {self._returnCode = nil}
|
|
1353
1333
|
|
|
1354
1334
|
public var errorDescription: String {
|
|
1355
|
-
get {
|
|
1335
|
+
get {_errorDescription ?? String()}
|
|
1356
1336
|
set {_errorDescription = newValue}
|
|
1357
1337
|
}
|
|
1358
1338
|
/// Returns true if `errorDescription` has been explicitly set.
|
|
1359
|
-
public var hasErrorDescription: Bool {
|
|
1339
|
+
public var hasErrorDescription: Bool {self._errorDescription != nil}
|
|
1360
1340
|
/// Clears the value of `errorDescription`. Subsequent reads from it will return its default value.
|
|
1361
1341
|
public mutating func clearErrorDescription() {self._errorDescription = nil}
|
|
1362
1342
|
|
|
@@ -1387,56 +1367,56 @@ public struct BlueLegacyProvisioningRequest: Sendable {
|
|
|
1387
1367
|
// methods supported on all messages.
|
|
1388
1368
|
|
|
1389
1369
|
public var deviceID: String {
|
|
1390
|
-
get {
|
|
1370
|
+
get {_deviceID ?? String()}
|
|
1391
1371
|
set {_deviceID = newValue}
|
|
1392
1372
|
}
|
|
1393
1373
|
/// Returns true if `deviceID` has been explicitly set.
|
|
1394
|
-
public var hasDeviceID: Bool {
|
|
1374
|
+
public var hasDeviceID: Bool {self._deviceID != nil}
|
|
1395
1375
|
/// Clears the value of `deviceID`. Subsequent reads from it will return its default value.
|
|
1396
1376
|
public mutating func clearDeviceID() {self._deviceID = nil}
|
|
1397
1377
|
|
|
1398
1378
|
public var soid: String {
|
|
1399
|
-
get {
|
|
1379
|
+
get {_soid ?? String()}
|
|
1400
1380
|
set {_soid = newValue}
|
|
1401
1381
|
}
|
|
1402
1382
|
/// Returns true if `soid` has been explicitly set.
|
|
1403
|
-
public var hasSoid: Bool {
|
|
1383
|
+
public var hasSoid: Bool {self._soid != nil}
|
|
1404
1384
|
/// Clears the value of `soid`. Subsequent reads from it will return its default value.
|
|
1405
1385
|
public mutating func clearSoid() {self._soid = nil}
|
|
1406
1386
|
|
|
1407
1387
|
public var vendor: String {
|
|
1408
|
-
get {
|
|
1388
|
+
get {_vendor ?? String()}
|
|
1409
1389
|
set {_vendor = newValue}
|
|
1410
1390
|
}
|
|
1411
1391
|
/// Returns true if `vendor` has been explicitly set.
|
|
1412
|
-
public var hasVendor: Bool {
|
|
1392
|
+
public var hasVendor: Bool {self._vendor != nil}
|
|
1413
1393
|
/// Clears the value of `vendor`. Subsequent reads from it will return its default value.
|
|
1414
1394
|
public mutating func clearVendor() {self._vendor = nil}
|
|
1415
1395
|
|
|
1416
1396
|
public var hardwareType: BlueHardwareType {
|
|
1417
|
-
get {
|
|
1397
|
+
get {_hardwareType ?? .unknownHardware}
|
|
1418
1398
|
set {_hardwareType = newValue}
|
|
1419
1399
|
}
|
|
1420
1400
|
/// Returns true if `hardwareType` has been explicitly set.
|
|
1421
|
-
public var hasHardwareType: Bool {
|
|
1401
|
+
public var hasHardwareType: Bool {self._hardwareType != nil}
|
|
1422
1402
|
/// Clears the value of `hardwareType`. Subsequent reads from it will return its default value.
|
|
1423
1403
|
public mutating func clearHardwareType() {self._hardwareType = nil}
|
|
1424
1404
|
|
|
1425
1405
|
public var hardwareVersion: UInt32 {
|
|
1426
|
-
get {
|
|
1406
|
+
get {_hardwareVersion ?? 0}
|
|
1427
1407
|
set {_hardwareVersion = newValue}
|
|
1428
1408
|
}
|
|
1429
1409
|
/// Returns true if `hardwareVersion` has been explicitly set.
|
|
1430
|
-
public var hasHardwareVersion: Bool {
|
|
1410
|
+
public var hasHardwareVersion: Bool {self._hardwareVersion != nil}
|
|
1431
1411
|
/// Clears the value of `hardwareVersion`. Subsequent reads from it will return its default value.
|
|
1432
1412
|
public mutating func clearHardwareVersion() {self._hardwareVersion = nil}
|
|
1433
1413
|
|
|
1434
1414
|
public var hardwareSerialNumber: String {
|
|
1435
|
-
get {
|
|
1415
|
+
get {_hardwareSerialNumber ?? String()}
|
|
1436
1416
|
set {_hardwareSerialNumber = newValue}
|
|
1437
1417
|
}
|
|
1438
1418
|
/// Returns true if `hardwareSerialNumber` has been explicitly set.
|
|
1439
|
-
public var hasHardwareSerialNumber: Bool {
|
|
1419
|
+
public var hasHardwareSerialNumber: Bool {self._hardwareSerialNumber != nil}
|
|
1440
1420
|
/// Clears the value of `hardwareSerialNumber`. Subsequent reads from it will return its default value.
|
|
1441
1421
|
public mutating func clearHardwareSerialNumber() {self._hardwareSerialNumber = nil}
|
|
1442
1422
|
|
|
@@ -1458,38 +1438,38 @@ public struct BlueLegacyProvisioningResponse: Sendable {
|
|
|
1458
1438
|
// methods supported on all messages.
|
|
1459
1439
|
|
|
1460
1440
|
public var deviceID: String {
|
|
1461
|
-
get {
|
|
1441
|
+
get {_deviceID ?? String()}
|
|
1462
1442
|
set {_deviceID = newValue}
|
|
1463
1443
|
}
|
|
1464
1444
|
/// Returns true if `deviceID` has been explicitly set.
|
|
1465
|
-
public var hasDeviceID: Bool {
|
|
1445
|
+
public var hasDeviceID: Bool {self._deviceID != nil}
|
|
1466
1446
|
/// Clears the value of `deviceID`. Subsequent reads from it will return its default value.
|
|
1467
1447
|
public mutating func clearDeviceID() {self._deviceID = nil}
|
|
1468
1448
|
|
|
1469
1449
|
public var objectID: String {
|
|
1470
|
-
get {
|
|
1450
|
+
get {_objectID ?? String()}
|
|
1471
1451
|
set {_objectID = newValue}
|
|
1472
1452
|
}
|
|
1473
1453
|
/// Returns true if `objectID` has been explicitly set.
|
|
1474
|
-
public var hasObjectID: Bool {
|
|
1454
|
+
public var hasObjectID: Bool {self._objectID != nil}
|
|
1475
1455
|
/// Clears the value of `objectID`. Subsequent reads from it will return its default value.
|
|
1476
1456
|
public mutating func clearObjectID() {self._objectID = nil}
|
|
1477
1457
|
|
|
1478
1458
|
public var objectName: String {
|
|
1479
|
-
get {
|
|
1459
|
+
get {_objectName ?? String()}
|
|
1480
1460
|
set {_objectName = newValue}
|
|
1481
1461
|
}
|
|
1482
1462
|
/// Returns true if `objectName` has been explicitly set.
|
|
1483
|
-
public var hasObjectName: Bool {
|
|
1463
|
+
public var hasObjectName: Bool {self._objectName != nil}
|
|
1484
1464
|
/// Clears the value of `objectName`. Subsequent reads from it will return its default value.
|
|
1485
1465
|
public mutating func clearObjectName() {self._objectName = nil}
|
|
1486
1466
|
|
|
1487
1467
|
public var provisioning: BlueSystemProvisioning {
|
|
1488
|
-
get {
|
|
1468
|
+
get {_provisioning ?? BlueSystemProvisioning()}
|
|
1489
1469
|
set {_provisioning = newValue}
|
|
1490
1470
|
}
|
|
1491
1471
|
/// Returns true if `provisioning` has been explicitly set.
|
|
1492
|
-
public var hasProvisioning: Bool {
|
|
1472
|
+
public var hasProvisioning: Bool {self._provisioning != nil}
|
|
1493
1473
|
/// Clears the value of `provisioning`. Subsequent reads from it will return its default value.
|
|
1494
1474
|
public mutating func clearProvisioning() {self._provisioning = nil}
|
|
1495
1475
|
|
|
@@ -1509,20 +1489,20 @@ public struct BlueRefreshTransponderResultItem: Sendable {
|
|
|
1509
1489
|
// methods supported on all messages.
|
|
1510
1490
|
|
|
1511
1491
|
public var credentialID: BlueCredentialId {
|
|
1512
|
-
get {
|
|
1492
|
+
get {_credentialID ?? BlueCredentialId()}
|
|
1513
1493
|
set {_credentialID = newValue}
|
|
1514
1494
|
}
|
|
1515
1495
|
/// Returns true if `credentialID` has been explicitly set.
|
|
1516
|
-
public var hasCredentialID: Bool {
|
|
1496
|
+
public var hasCredentialID: Bool {self._credentialID != nil}
|
|
1517
1497
|
/// Clears the value of `credentialID`. Subsequent reads from it will return its default value.
|
|
1518
1498
|
public mutating func clearCredentialID() {self._credentialID = nil}
|
|
1519
1499
|
|
|
1520
1500
|
public var error: String {
|
|
1521
|
-
get {
|
|
1501
|
+
get {_error ?? String()}
|
|
1522
1502
|
set {_error = newValue}
|
|
1523
1503
|
}
|
|
1524
1504
|
/// Returns true if `error` has been explicitly set.
|
|
1525
|
-
public var hasError: Bool {
|
|
1505
|
+
public var hasError: Bool {self._error != nil}
|
|
1526
1506
|
/// Clears the value of `error`. Subsequent reads from it will return its default value.
|
|
1527
1507
|
public mutating func clearError() {self._error = nil}
|
|
1528
1508
|
|
|
@@ -1557,119 +1537,119 @@ public struct BlueAccessCredential: @unchecked Sendable {
|
|
|
1557
1537
|
// methods supported on all messages.
|
|
1558
1538
|
|
|
1559
1539
|
public var credentialID: BlueCredentialId {
|
|
1560
|
-
get {
|
|
1540
|
+
get {_storage._credentialID ?? BlueCredentialId()}
|
|
1561
1541
|
set {_uniqueStorage()._credentialID = newValue}
|
|
1562
1542
|
}
|
|
1563
1543
|
/// Returns true if `credentialID` has been explicitly set.
|
|
1564
|
-
public var hasCredentialID: Bool {
|
|
1544
|
+
public var hasCredentialID: Bool {_storage._credentialID != nil}
|
|
1565
1545
|
/// Clears the value of `credentialID`. Subsequent reads from it will return its default value.
|
|
1566
1546
|
public mutating func clearCredentialID() {_uniqueStorage()._credentialID = nil}
|
|
1567
1547
|
|
|
1568
1548
|
public var credentialType: BlueCredentialType {
|
|
1569
|
-
get {
|
|
1549
|
+
get {_storage._credentialType ?? .regular}
|
|
1570
1550
|
set {_uniqueStorage()._credentialType = newValue}
|
|
1571
1551
|
}
|
|
1572
1552
|
/// Returns true if `credentialType` has been explicitly set.
|
|
1573
|
-
public var hasCredentialType: Bool {
|
|
1553
|
+
public var hasCredentialType: Bool {_storage._credentialType != nil}
|
|
1574
1554
|
/// Clears the value of `credentialType`. Subsequent reads from it will return its default value.
|
|
1575
1555
|
public mutating func clearCredentialType() {_uniqueStorage()._credentialType = nil}
|
|
1576
1556
|
|
|
1577
1557
|
public var name: String {
|
|
1578
|
-
get {
|
|
1558
|
+
get {_storage._name ?? String()}
|
|
1579
1559
|
set {_uniqueStorage()._name = newValue}
|
|
1580
1560
|
}
|
|
1581
1561
|
/// Returns true if `name` has been explicitly set.
|
|
1582
|
-
public var hasName: Bool {
|
|
1562
|
+
public var hasName: Bool {_storage._name != nil}
|
|
1583
1563
|
/// Clears the value of `name`. Subsequent reads from it will return its default value.
|
|
1584
1564
|
public mutating func clearName() {_uniqueStorage()._name = nil}
|
|
1585
1565
|
|
|
1586
1566
|
public var description_p: String {
|
|
1587
|
-
get {
|
|
1567
|
+
get {_storage._description_p ?? String()}
|
|
1588
1568
|
set {_uniqueStorage()._description_p = newValue}
|
|
1589
1569
|
}
|
|
1590
1570
|
/// Returns true if `description_p` has been explicitly set.
|
|
1591
|
-
public var hasDescription_p: Bool {
|
|
1571
|
+
public var hasDescription_p: Bool {_storage._description_p != nil}
|
|
1592
1572
|
/// Clears the value of `description_p`. Subsequent reads from it will return its default value.
|
|
1593
1573
|
public mutating func clearDescription_p() {_uniqueStorage()._description_p = nil}
|
|
1594
1574
|
|
|
1595
1575
|
public var siteID: Int32 {
|
|
1596
|
-
get {
|
|
1576
|
+
get {_storage._siteID ?? 0}
|
|
1597
1577
|
set {_uniqueStorage()._siteID = newValue}
|
|
1598
1578
|
}
|
|
1599
1579
|
/// Returns true if `siteID` has been explicitly set.
|
|
1600
|
-
public var hasSiteID: Bool {
|
|
1580
|
+
public var hasSiteID: Bool {_storage._siteID != nil}
|
|
1601
1581
|
/// Clears the value of `siteID`. Subsequent reads from it will return its default value.
|
|
1602
1582
|
public mutating func clearSiteID() {_uniqueStorage()._siteID = nil}
|
|
1603
1583
|
|
|
1604
1584
|
public var siteName: String {
|
|
1605
|
-
get {
|
|
1585
|
+
get {_storage._siteName ?? String()}
|
|
1606
1586
|
set {_uniqueStorage()._siteName = newValue}
|
|
1607
1587
|
}
|
|
1608
1588
|
/// Returns true if `siteName` has been explicitly set.
|
|
1609
|
-
public var hasSiteName: Bool {
|
|
1589
|
+
public var hasSiteName: Bool {_storage._siteName != nil}
|
|
1610
1590
|
/// Clears the value of `siteName`. Subsequent reads from it will return its default value.
|
|
1611
1591
|
public mutating func clearSiteName() {_uniqueStorage()._siteName = nil}
|
|
1612
1592
|
|
|
1613
1593
|
public var validFrom: BlueLocalTimestamp {
|
|
1614
|
-
get {
|
|
1594
|
+
get {_storage._validFrom ?? BlueLocalTimestamp()}
|
|
1615
1595
|
set {_uniqueStorage()._validFrom = newValue}
|
|
1616
1596
|
}
|
|
1617
1597
|
/// Returns true if `validFrom` has been explicitly set.
|
|
1618
|
-
public var hasValidFrom: Bool {
|
|
1598
|
+
public var hasValidFrom: Bool {_storage._validFrom != nil}
|
|
1619
1599
|
/// Clears the value of `validFrom`. Subsequent reads from it will return its default value.
|
|
1620
1600
|
public mutating func clearValidFrom() {_uniqueStorage()._validFrom = nil}
|
|
1621
1601
|
|
|
1622
1602
|
public var validTo: BlueLocalTimestamp {
|
|
1623
|
-
get {
|
|
1603
|
+
get {_storage._validTo ?? BlueLocalTimestamp()}
|
|
1624
1604
|
set {_uniqueStorage()._validTo = newValue}
|
|
1625
1605
|
}
|
|
1626
1606
|
/// Returns true if `validTo` has been explicitly set.
|
|
1627
|
-
public var hasValidTo: Bool {
|
|
1607
|
+
public var hasValidTo: Bool {_storage._validTo != nil}
|
|
1628
1608
|
/// Clears the value of `validTo`. Subsequent reads from it will return its default value.
|
|
1629
1609
|
public mutating func clearValidTo() {_uniqueStorage()._validTo = nil}
|
|
1630
1610
|
|
|
1631
1611
|
public var validity: BlueLocalTimestamp {
|
|
1632
|
-
get {
|
|
1612
|
+
get {_storage._validity ?? BlueLocalTimestamp()}
|
|
1633
1613
|
set {_uniqueStorage()._validity = newValue}
|
|
1634
1614
|
}
|
|
1635
1615
|
/// Returns true if `validity` has been explicitly set.
|
|
1636
|
-
public var hasValidity: Bool {
|
|
1616
|
+
public var hasValidity: Bool {_storage._validity != nil}
|
|
1637
1617
|
/// Clears the value of `validity`. Subsequent reads from it will return its default value.
|
|
1638
1618
|
public mutating func clearValidity() {_uniqueStorage()._validity = nil}
|
|
1639
1619
|
|
|
1640
1620
|
public var privateKey: Data {
|
|
1641
|
-
get {
|
|
1621
|
+
get {_storage._privateKey ?? Data()}
|
|
1642
1622
|
set {_uniqueStorage()._privateKey = newValue}
|
|
1643
1623
|
}
|
|
1644
1624
|
/// Returns true if `privateKey` has been explicitly set.
|
|
1645
|
-
public var hasPrivateKey: Bool {
|
|
1625
|
+
public var hasPrivateKey: Bool {_storage._privateKey != nil}
|
|
1646
1626
|
/// Clears the value of `privateKey`. Subsequent reads from it will return its default value.
|
|
1647
1627
|
public mutating func clearPrivateKey() {_uniqueStorage()._privateKey = nil}
|
|
1648
1628
|
|
|
1649
1629
|
public var receiverName: String {
|
|
1650
|
-
get {
|
|
1630
|
+
get {_storage._receiverName ?? String()}
|
|
1651
1631
|
set {_uniqueStorage()._receiverName = newValue}
|
|
1652
1632
|
}
|
|
1653
1633
|
/// Returns true if `receiverName` has been explicitly set.
|
|
1654
|
-
public var hasReceiverName: Bool {
|
|
1634
|
+
public var hasReceiverName: Bool {_storage._receiverName != nil}
|
|
1655
1635
|
/// Clears the value of `receiverName`. Subsequent reads from it will return its default value.
|
|
1656
1636
|
public mutating func clearReceiverName() {_uniqueStorage()._receiverName = nil}
|
|
1657
1637
|
|
|
1658
1638
|
public var organisation: String {
|
|
1659
|
-
get {
|
|
1639
|
+
get {_storage._organisation ?? String()}
|
|
1660
1640
|
set {_uniqueStorage()._organisation = newValue}
|
|
1661
1641
|
}
|
|
1662
1642
|
/// Returns true if `organisation` has been explicitly set.
|
|
1663
|
-
public var hasOrganisation: Bool {
|
|
1643
|
+
public var hasOrganisation: Bool {_storage._organisation != nil}
|
|
1664
1644
|
/// Clears the value of `organisation`. Subsequent reads from it will return its default value.
|
|
1665
1645
|
public mutating func clearOrganisation() {_uniqueStorage()._organisation = nil}
|
|
1666
1646
|
|
|
1667
1647
|
public var organisationName: String {
|
|
1668
|
-
get {
|
|
1648
|
+
get {_storage._organisationName ?? String()}
|
|
1669
1649
|
set {_uniqueStorage()._organisationName = newValue}
|
|
1670
1650
|
}
|
|
1671
1651
|
/// Returns true if `organisationName` has been explicitly set.
|
|
1672
|
-
public var hasOrganisationName: Bool {
|
|
1652
|
+
public var hasOrganisationName: Bool {_storage._organisationName != nil}
|
|
1673
1653
|
/// Clears the value of `organisationName`. Subsequent reads from it will return its default value.
|
|
1674
1654
|
public mutating func clearOrganisationName() {_uniqueStorage()._organisationName = nil}
|
|
1675
1655
|
|
|
@@ -1698,29 +1678,29 @@ public struct BlueRefreshOssSoCredential: Sendable {
|
|
|
1698
1678
|
// methods supported on all messages.
|
|
1699
1679
|
|
|
1700
1680
|
public var credentialID: BlueCredentialId {
|
|
1701
|
-
get {
|
|
1681
|
+
get {_credentialID ?? BlueCredentialId()}
|
|
1702
1682
|
set {_credentialID = newValue}
|
|
1703
1683
|
}
|
|
1704
1684
|
/// Returns true if `credentialID` has been explicitly set.
|
|
1705
|
-
public var hasCredentialID: Bool {
|
|
1685
|
+
public var hasCredentialID: Bool {self._credentialID != nil}
|
|
1706
1686
|
/// Clears the value of `credentialID`. Subsequent reads from it will return its default value.
|
|
1707
1687
|
public mutating func clearCredentialID() {self._credentialID = nil}
|
|
1708
1688
|
|
|
1709
1689
|
public var status: BlueRefreshOssSoCredentialStatus {
|
|
1710
|
-
get {
|
|
1690
|
+
get {_status ?? .succeeded}
|
|
1711
1691
|
set {_status = newValue}
|
|
1712
1692
|
}
|
|
1713
1693
|
/// Returns true if `status` has been explicitly set.
|
|
1714
|
-
public var hasStatus: Bool {
|
|
1694
|
+
public var hasStatus: Bool {self._status != nil}
|
|
1715
1695
|
/// Clears the value of `status`. Subsequent reads from it will return its default value.
|
|
1716
1696
|
public mutating func clearStatus() {self._status = nil}
|
|
1717
1697
|
|
|
1718
1698
|
public var configuration: BlueOssSoConfiguration {
|
|
1719
|
-
get {
|
|
1699
|
+
get {_configuration ?? BlueOssSoConfiguration()}
|
|
1720
1700
|
set {_configuration = newValue}
|
|
1721
1701
|
}
|
|
1722
1702
|
/// Returns true if `configuration` has been explicitly set.
|
|
1723
|
-
public var hasConfiguration: Bool {
|
|
1703
|
+
public var hasConfiguration: Bool {self._configuration != nil}
|
|
1724
1704
|
/// Clears the value of `configuration`. Subsequent reads from it will return its default value.
|
|
1725
1705
|
public mutating func clearConfiguration() {self._configuration = nil}
|
|
1726
1706
|
|
|
@@ -1751,29 +1731,29 @@ public struct BlueSynchronizeAccessCredential: Sendable {
|
|
|
1751
1731
|
// methods supported on all messages.
|
|
1752
1732
|
|
|
1753
1733
|
public var credentialID: BlueCredentialId {
|
|
1754
|
-
get {
|
|
1734
|
+
get {_credentialID ?? BlueCredentialId()}
|
|
1755
1735
|
set {_credentialID = newValue}
|
|
1756
1736
|
}
|
|
1757
1737
|
/// Returns true if `credentialID` has been explicitly set.
|
|
1758
|
-
public var hasCredentialID: Bool {
|
|
1738
|
+
public var hasCredentialID: Bool {self._credentialID != nil}
|
|
1759
1739
|
/// Clears the value of `credentialID`. Subsequent reads from it will return its default value.
|
|
1760
1740
|
public mutating func clearCredentialID() {self._credentialID = nil}
|
|
1761
1741
|
|
|
1762
1742
|
public var returnCode: BlueReturnCode {
|
|
1763
|
-
get {
|
|
1743
|
+
get {_returnCode ?? .ok}
|
|
1764
1744
|
set {_returnCode = newValue}
|
|
1765
1745
|
}
|
|
1766
1746
|
/// Returns true if `returnCode` has been explicitly set.
|
|
1767
|
-
public var hasReturnCode: Bool {
|
|
1747
|
+
public var hasReturnCode: Bool {self._returnCode != nil}
|
|
1768
1748
|
/// Clears the value of `returnCode`. Subsequent reads from it will return its default value.
|
|
1769
1749
|
public mutating func clearReturnCode() {self._returnCode = nil}
|
|
1770
1750
|
|
|
1771
1751
|
public var errorDescription: String {
|
|
1772
|
-
get {
|
|
1752
|
+
get {_errorDescription ?? String()}
|
|
1773
1753
|
set {_errorDescription = newValue}
|
|
1774
1754
|
}
|
|
1775
1755
|
/// Returns true if `errorDescription` has been explicitly set.
|
|
1776
|
-
public var hasErrorDescription: Bool {
|
|
1756
|
+
public var hasErrorDescription: Bool {self._errorDescription != nil}
|
|
1777
1757
|
/// Clears the value of `errorDescription`. Subsequent reads from it will return its default value.
|
|
1778
1758
|
public mutating func clearErrorDescription() {self._errorDescription = nil}
|
|
1779
1759
|
|
|
@@ -1808,10 +1788,6 @@ extension BlueRefreshOssSoCredentialStatus: SwiftProtobuf._ProtoNameProviding {
|
|
|
1808
1788
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}Succeeded\0\u{1}Failed\0\u{1}NotNeeded\0\u{1}Unsupported\0")
|
|
1809
1789
|
}
|
|
1810
1790
|
|
|
1811
|
-
extension BlueHardwareVendor: SwiftProtobuf._ProtoNameProviding {
|
|
1812
|
-
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0uundzlocks\0\u{1}dlogiclock\0")
|
|
1813
|
-
}
|
|
1814
|
-
|
|
1815
1791
|
extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
1816
1792
|
public static let protoMessageName: String = "BlueI18n"
|
|
1817
1793
|
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}nfcWaitMessage\0\u{1}nfcOssSuccessReadConfigurationMessage\0\u{1}nfcOssSuccessUpdateConfigurationMessage\0\u{1}nfcOssSuccessClearEventsMessage\0\u{1}nfcOssSuccessIsProvisionedMessage\0\u{1}nfcOssSuccessProvisionMessage\0\u{1}nfcOssSuccessUnprovisionMessage\0\u{1}nfcOssSuccessFormatMessage\0\u{1}nfcInitializingWritingProcess\0\u{1}openViaOssTitle\0\u{1}openViaOssWaitMessage\0\u{1}openViaOssAccessGrantedTitle\0\u{1}openViaOssAccessGrantedMessage\0\u{1}openViaOssAccessGrantedLockEngagedTitle\0\u{1}openViaOssAccessGrantedLockEngagedMessage\0\u{1}openViaOssAccessGrantedLockDisengagedTitle\0\u{1}openViaOssAccessGrantedLockDisengagedMessage\0\u{1}openViaOssAccessGrantedExtendedTimeMessage\0\u{1}openViaOssAccessDeniedTitle\0\u{1}openViaOssAccessDeniedMessage\0\u{1}openViaOssAccessDeniedScheduleMismatchMessage\0\u{1}openViaOssErrorTitle\0\u{1}cmnCancelLabel\0\u{1}cmnCloseLabel\0\u{1}syncDeviceInProgressTitle\0\u{1}syncDeviceFailedTitle\0\u{1}syncDeviceCancellingTitle\0\u{1}syncDeviceCompletedTitle\0\u{1}syncDeviceGetAuthenticationTokenTaskLabel\0\u{1}syncDeviceRetrieveDeviceConfigurationTaskLabel\0\u{1}syncDeviceUpdateDeviceConfigurationTaskLabel\0\u{1}syncDeviceUpdateDeviceTimeTaskLabel\0\u{1}syncDeviceWaitForDeviceToRestartTaskLabel\0\u{1}syncDevicePushEventLogsTaskLabel\0\u{1}syncDevicePushSystemLogsTaskLabel\0\u{1}syncDeviceRetrieveBlacklistEntriesTaskLabel\0\u{1}syncDeviceDeployBlacklistEntriesTaskLabel\0\u{1}syncDeviceRetrieveSystemStatusTaskLabel\0\u{1}syncDevicePushSystemStatusTaskLabel\0\u{1}syncDeviceCheckLatestFWLabel\0\u{1}dfuInProgressTitle\0\u{1}dfuFailedTitle\0\u{1}dfuCancellingTitle\0\u{1}dfuCompletedTitle\0\u{1}getAuthenticationTokenTaskLabel\0\u{1}dfuCheckLatestFWLabel\0\u{1}dfuDownloadLatestFWLabel\0\u{1}dfuPrepareUpdateLabel\0\u{1}dfuStartBootloaderLabel\0\u{1}dfuInitializationLabel\0\u{1}dfuUpdateFWLabel\0\u{1}waitForDeviceToRestartTaskLabel\0\u{1}accessTypeDefaultTime\0\u{1}accessTypeExtendedTime\0\u{1}accessTypeToggle\0\u{1}accessTypeClose\0\u{1}accessTypeCustomTime\0\u{1}openViaOssSoSelectAccessTypeTitle\0\u{1}openViaOssSoSelectAccessTypeMessage\0\u{1}provisioningDone\0\u{2}\u{2}checkCurrentAVR\0\u{1}checkIfAVRUpdateNedded\0\u{1}downloadAVR\0\u{1}downloadingAVR\0\u{1}updateAVR\0\u{1}avrIsAlreadyUpToDate\0\u{2}!nfcTransponderConnected\0\u{1}nfcTransponderDisconnected\0\u{1}nfcTransponderSuccessReadMessage\0\u{1}nfcKioskRefreshTransponderNoRefreshNeededMessage\0\u{1}nfcKioskRefreshTransponderPartialRefreshMessage\0\u{1}nfcKioskRefreshTransponderHoldYourCardSteadyMessage\0")
|
|
@@ -2645,7 +2621,7 @@ extension BlueDeviceInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
|
|
|
2645
2621
|
|
|
2646
2622
|
extension BlueIdentity: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
2647
2623
|
public static let protoMessageName: String = "BlueIdentity"
|
|
2648
|
-
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}identityId\0\u{1}role\0\u{1}name\0\u{1}description\0\u{1}receiverName\0\u{1}validFrom\0\u{1}validTo\0\u{1}organization\0\u{1}organizationName\0\u{1}siteId\0\u{1}siteName\0\u{1}privateKey\0\u{1}status\0
|
|
2624
|
+
public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}identityId\0\u{1}role\0\u{1}name\0\u{1}description\0\u{1}receiverName\0\u{1}validFrom\0\u{1}validTo\0\u{1}organization\0\u{1}organizationName\0\u{1}siteId\0\u{1}siteName\0\u{1}privateKey\0\u{1}status\0")
|
|
2649
2625
|
|
|
2650
2626
|
fileprivate class _StorageClass {
|
|
2651
2627
|
var _identityID: String? = nil
|
|
@@ -2661,7 +2637,6 @@ extension BlueIdentity: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
|
|
|
2661
2637
|
var _siteName: String? = nil
|
|
2662
2638
|
var _privateKey: Data? = nil
|
|
2663
2639
|
var _status: String? = nil
|
|
2664
|
-
var _syncedUntil: UInt64? = nil
|
|
2665
2640
|
|
|
2666
2641
|
// This property is used as the initial default value for new instances of the type.
|
|
2667
2642
|
// The type itself is protecting the reference to its storage via CoW semantics.
|
|
@@ -2685,7 +2660,6 @@ extension BlueIdentity: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
|
|
|
2685
2660
|
_siteName = source._siteName
|
|
2686
2661
|
_privateKey = source._privateKey
|
|
2687
2662
|
_status = source._status
|
|
2688
|
-
_syncedUntil = source._syncedUntil
|
|
2689
2663
|
}
|
|
2690
2664
|
}
|
|
2691
2665
|
|
|
@@ -2729,7 +2703,6 @@ extension BlueIdentity: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
|
|
|
2729
2703
|
case 11: try { try decoder.decodeSingularStringField(value: &_storage._siteName) }()
|
|
2730
2704
|
case 12: try { try decoder.decodeSingularBytesField(value: &_storage._privateKey) }()
|
|
2731
2705
|
case 13: try { try decoder.decodeSingularStringField(value: &_storage._status) }()
|
|
2732
|
-
case 14: try { try decoder.decodeSingularUInt64Field(value: &_storage._syncedUntil) }()
|
|
2733
2706
|
default: break
|
|
2734
2707
|
}
|
|
2735
2708
|
}
|
|
@@ -2781,9 +2754,6 @@ extension BlueIdentity: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
|
|
|
2781
2754
|
try { if let v = _storage._status {
|
|
2782
2755
|
try visitor.visitSingularStringField(value: v, fieldNumber: 13)
|
|
2783
2756
|
} }()
|
|
2784
|
-
try { if let v = _storage._syncedUntil {
|
|
2785
|
-
try visitor.visitSingularUInt64Field(value: v, fieldNumber: 14)
|
|
2786
|
-
} }()
|
|
2787
2757
|
}
|
|
2788
2758
|
try unknownFields.traverse(visitor: &visitor)
|
|
2789
2759
|
}
|
|
@@ -2806,7 +2776,6 @@ extension BlueIdentity: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementat
|
|
|
2806
2776
|
if _storage._siteName != rhs_storage._siteName {return false}
|
|
2807
2777
|
if _storage._privateKey != rhs_storage._privateKey {return false}
|
|
2808
2778
|
if _storage._status != rhs_storage._status {return false}
|
|
2809
|
-
if _storage._syncedUntil != rhs_storage._syncedUntil {return false}
|
|
2810
2779
|
return true
|
|
2811
2780
|
}
|
|
2812
2781
|
if !storagesAreEqual {return false}
|