toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attestedDeviceId = this.attestedDeviceId;
  final customerId = this.customerId;
  final deviceEnrollmentId = this.deviceEnrollmentId;
  final devicePermanentId = this.devicePermanentId;
  final deviceSignal = this.deviceSignal;
  final deviceSignals = this.deviceSignals;
  final keyTrustLevel = this.keyTrustLevel;
  final profileCustomerId = this.profileCustomerId;
  final profileKeyTrustLevel = this.profileKeyTrustLevel;
  final profilePermanentId = this.profilePermanentId;
  final signedPublicKeyAndChallenge = this.signedPublicKeyAndChallenge;
  final virtualDeviceId = this.virtualDeviceId;
  final virtualProfileId = this.virtualProfileId;
  return {
    'attestedDeviceId': ?attestedDeviceId,
    'customerId': ?customerId,
    'deviceEnrollmentId': ?deviceEnrollmentId,
    'devicePermanentId': ?devicePermanentId,
    'deviceSignal': ?deviceSignal,
    'deviceSignals': ?deviceSignals,
    'keyTrustLevel': ?keyTrustLevel,
    'profileCustomerId': ?profileCustomerId,
    'profileKeyTrustLevel': ?profileKeyTrustLevel,
    'profilePermanentId': ?profilePermanentId,
    'signedPublicKeyAndChallenge': ?signedPublicKeyAndChallenge,
    'virtualDeviceId': ?virtualDeviceId,
    'virtualProfileId': ?virtualProfileId,
  };
}