사용자가 딥 링크와 상호작용할 수 있는 기능을 제공하는 작업 링크 작업을 실행하기 위해 파트너의 웹사이트로 연결되는 링크입니다. 딥 링크 판매자의 지식 패널에 표시됩니다. 이 가이드에서는 피드에 작업 링크를 추가합니다.
판매자 수준 작업 링크
모든 서비스가 사용자를 Google 판매자 센터 사이트의 동일한 방문 페이지로 리디렉션 확인할 수 있습니다.
<ph type="x-smartling-placeholder">동작 유형은 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; }