createPromotionRemovalRequest function
Implementation
PromotionRemovalRequest createPromotionRemovalRequest({
@required String targetCardId,
@required String targetPromotionId,
}) {
PromotionRemovalRequest req = PromotionRemovalRequest.create();
req.targetCardId = targetCardId;
req.targetPromotionId = targetPromotionId;
return req;
}