@@ -1136,14 +1136,14 @@ public func FfiConverterTypeMakeCredentialRequest_lower(_ value: MakeCredentialR
1136
1136
1137
1137
public struct MakeCredentialResult {
1138
1138
public let authenticatorData : Data
1139
- public let attestedCredentialData : Data
1139
+ public let attestationObject : Data
1140
1140
public let credentialId : Data
1141
1141
1142
1142
// Default memberwise initializers are never public by default, so we
1143
1143
// declare one manually.
1144
- public init ( authenticatorData: Data , attestedCredentialData : Data , credentialId: Data ) {
1144
+ public init ( authenticatorData: Data , attestationObject : Data , credentialId: Data ) {
1145
1145
self . authenticatorData = authenticatorData
1146
- self . attestedCredentialData = attestedCredentialData
1146
+ self . attestationObject = attestationObject
1147
1147
self . credentialId = credentialId
1148
1148
}
1149
1149
}
@@ -1155,7 +1155,7 @@ extension MakeCredentialResult: Equatable, Hashable {
1155
1155
if lhs. authenticatorData != rhs. authenticatorData {
1156
1156
return false
1157
1157
}
1158
- if lhs. attestedCredentialData != rhs. attestedCredentialData {
1158
+ if lhs. attestationObject != rhs. attestationObject {
1159
1159
return false
1160
1160
}
1161
1161
if lhs. credentialId != rhs. credentialId {
@@ -1166,7 +1166,7 @@ extension MakeCredentialResult: Equatable, Hashable {
1166
1166
1167
1167
public func hash( into hasher: inout Hasher ) {
1168
1168
hasher. combine ( authenticatorData)
1169
- hasher. combine ( attestedCredentialData )
1169
+ hasher. combine ( attestationObject )
1170
1170
hasher. combine ( credentialId)
1171
1171
}
1172
1172
}
@@ -1177,14 +1177,14 @@ public struct FfiConverterTypeMakeCredentialResult: FfiConverterRustBuffer {
1177
1177
return
1178
1178
try MakeCredentialResult (
1179
1179
authenticatorData: FfiConverterData . read ( from: & buf) ,
1180
- attestedCredentialData : FfiConverterData . read ( from: & buf) ,
1180
+ attestationObject : FfiConverterData . read ( from: & buf) ,
1181
1181
credentialId: FfiConverterData . read ( from: & buf)
1182
1182
)
1183
1183
}
1184
1184
1185
1185
public static func write( _ value: MakeCredentialResult , into buf: inout [ UInt8 ] ) {
1186
1186
FfiConverterData . write ( value. authenticatorData, into: & buf)
1187
- FfiConverterData . write ( value. attestedCredentialData , into: & buf)
1187
+ FfiConverterData . write ( value. attestationObject , into: & buf)
1188
1188
FfiConverterData . write ( value. credentialId, into: & buf)
1189
1189
}
1190
1190
}
0 commit comments