Input$UpdateDeviceEncryptionKeysInput constructor
Input$UpdateDeviceEncryptionKeysInput({})
Implementation
factory Input$UpdateDeviceEncryptionKeysInput({
required String deviceId,
String? mepKey,
String? opticalKey,
String? gpk60Key,
String? gpk61Key,
}) => Input$UpdateDeviceEncryptionKeysInput._({
r'deviceId': deviceId,
if (mepKey != null) r'mepKey': mepKey,
if (opticalKey != null) r'opticalKey': opticalKey,
if (gpk60Key != null) r'gpk60Key': gpk60Key,
if (gpk61Key != null) r'gpk61Key': gpk61Key,
});