blob: a15753faf80b6cb7d61e5bc7e6e03764e0ca9b95 [file] [log] [blame]
/*
*
* Copyright (c) 2023 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package chip.onboardingpayload
data class OptionalQRCodeInfo(
var tag: Int = 0,
var type: OptionalQRCodeInfoType = OptionalQRCodeInfoType.TYPE_UNKNOWN,
var data: String? = null,
var int32: Int = 0
) {
enum class OptionalQRCodeInfoType {
TYPE_UNKNOWN,
TYPE_STRING,
TYPE_INT32,
TYPE_INT64,
TYPE_UINT32,
TYPE_UINT64
}
}