InstanceMoveRequest.fromJson constructor

InstanceMoveRequest.fromJson(
  1. Map json_
)

Implementation

InstanceMoveRequest.fromJson(core.Map json_)
    : this(
        destinationZone: json_.containsKey('destinationZone')
            ? json_['destinationZone'] as core.String
            : null,
        targetInstance: json_.containsKey('targetInstance')
            ? json_['targetInstance'] as core.String
            : null,
      );