$AuthorizedSellerStatusAssignedTargetingOptionDetails.fromJson constructor

$AuthorizedSellerStatusAssignedTargetingOptionDetails.fromJson(
  1. Map json_
)

Implementation

$AuthorizedSellerStatusAssignedTargetingOptionDetails.fromJson(core.Map json_)
    : this(
        authorizedSellerStatus: json_.containsKey('authorizedSellerStatus')
            ? json_['authorizedSellerStatus'] as core.String
            : null,
        targetingOptionId: json_.containsKey('targetingOptionId')
            ? json_['targetingOptionId'] as core.String
            : null,
      );