কর্ম লিঙ্ক নির্দিষ্ট করুন

একটি অ্যাকশন লিঙ্ক ব্যবহারকারীদের একটি গভীর লিঙ্কের সাথে ইন্টারঅ্যাক্ট করার ক্ষমতা প্রদান করে যা একটি ক্রিয়া সম্পাদনের জন্য অংশীদারের ওয়েবসাইটের সাথে লিঙ্ক করে। ডিপ লিঙ্কগুলি মার্চেন্টের নলেজ প্যানেলে প্রদর্শিত হয়। এই নির্দেশিকাটি বর্ণনা করবে কিভাবে ফিডে অ্যাকশন লিঙ্ক যোগ করতে হয়।

যখন প্রদত্ত বণিকের জন্য সমস্ত পরিষেবা ব্যবহারকারীকে অংশীদারের ওয়েবসাইটে একই ল্যান্ডিং পৃষ্ঠায় পুনঃনির্দেশ করে তখন আপনাকে মার্চেন্ট ফিডের মাধ্যমে একটি অ্যাকশন লিঙ্ক প্রদান করা উচিত।

অ্যাকশনের ধরন অবশ্যই ActionLinkType ব্যবহার করে নির্দিষ্ট করতে হবে যা মার্চেন্ট ফিডে ActionLink এর অংশ।

  // Predetermined type of action associated with an action link.
  enum ActionLinkType {
    // The action link type is unspecified.
    ACTION_LINK_TYPE_UNSPECIFIED = 0;
    // The action link type is booking an appointment.
    ACTION_LINK_TYPE_BOOK_APPOINTMENT = 1;
    // The action link type is booking an online appointment.
    ACTION_LINK_TYPE_BOOK_ONLINE_APPOINTMENT = 2;
    // The action link type is ordering food for delivery or takeout or both.
    ACTION_LINK_TYPE_ORDER_FOOD = 3;
    // The action link type is ordering food for delivery.
    ACTION_LINK_TYPE_ORDER_FOOD_DELIVERY = 4;
    // The action link type is ordering food for takeout.
    ACTION_LINK_TYPE_ORDER_FOOD_TAKEOUT = 5;
    // The action link type is making a dining reservation.
    ACTION_LINK_TYPE_MAKE_DINING_RESERVATION = 6;
    // The action link type allows users to shop from the given merchant. It
    // could either be delivery or pickup.
    ACTION_LINK_TYPE_SHOP_ONLINE = 7;
  }