Input$UpdateDeviceEncryptionKeysInput constructor

Input$UpdateDeviceEncryptionKeysInput({
  1. required String deviceId,
  2. String? mepKey,
  3. String? opticalKey,
  4. String? gpk60Key,
  5. String? gpk61Key,
})

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,
});