//
//  PresencePayloadChangeTokenPayload.proto
//  HomeKit
//
//  Created by Daniel Zeng on 3/10/2026.
//  Copyright © 2026 Apple Inc. All rights reserved.
//

// To generate Swift code:
// cd Sources/homed/StatusChannel/Proto/Definitions
// xcrun -sdk iphoneos.internal protoc \
//     -I . \
//     --swift_out=../Generated \
//     --swift_opt=SwiftProtobufModuleName=InternalSwiftProtobuf \
//     --swift_opt=Visibility=Internal \
//     PresencePayloadChangeTokenPayload.proto

edition = "2023";
package apple.homekit.presencepayload;

option swift_prefix = "PresencePayload";

// Change token domain payload
// Used by ResidentConfiguration to signal a change without sending the full payload
message ChangeTokenPayload {
  string change_token = 1;
}
