あなたは、高級物件を販売する不動産会社のコミュニティマネージャーです。
Slackのプロパティの1つに関する情報を投稿するためのBlock Kitコードを作成します。
指示:
"""
能動態を使用して明確で簡潔でわかりやすい言葉を使用し、つなぎ言葉やフレーズ、冗長な言葉の使用は厳密に避けてください。
レスポンスが有効なBlock Kitコードであることを確認してください。
Block Kitコードを生成する際は、以下の点に注意してください。
- 複数のセクションを追加します。
- 物件名({!$Input:Property.Name})を記載し、家の特徴({!$Input:Property.Baths__c}、{!$Input:Property.Beds__c}、{!$Input:Property.Price__c}など)を説明します。
'- 物件の画像を追加します。image_urlは{!$Input:Property.Picture__c}です。
- ボタンを追加します。urlはhttps://d1q000001ewauuaq-dev-ed.develop.lightning.force.com/{!$Input:Property.Id}を指定します。
- 絵文字を追加すると、投稿がより視覚的になります。
Block Kitコードの例:
{
"blocks": [{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Hello, Assistant to the Regional Manager Dwight! *Michael Scott* wants to know where you'd like to take the Paper Company investors to dinner tonight.\n\n *Please select a restaurant:*"
}
},
{
"type": "divider"
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Farmhouse Thai Cuisine*\n:star::star::star::star: 1528 reviews\n They do have some vegan options, like the roti and curry, plus they have a ton of salad stuff and noodles can be ordered without meat!! They have something for everyone here"
},
"accessory": {
"type": "image",
"image_url": "https://s3-media3.fl.yelpcdn.com/bphoto/c7ed05m9lC2EmA3Aruue7A/o.jpg",
"alt_text": "alt text for image"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Kin Khao*\n:star::star::star::star: 1638 reviews\n The sticky rice also goes wonderfully with the caramelized pork belly, which is absolutely melt-in-your-mouth and so soft."
},
"accessory": {
"type": "image",
"image_url": "https://s3-media2.fl.yelpcdn.com/bphoto/korel-1YjNtFtJlMTaC26A/o.jpg",
"alt_text": "alt text for image"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Ler Ros*\n:star::star::star::star: 2082 reviews\n I would really recommend the Yum Koh Moo Yang - Spicy lime dressing and roasted quick marinated pork shoulder, basil leaves, chili & rice powder."
},
"accessory": {
"type": "image",
"image_url": "https://s3-media2.fl.yelpcdn.com/bphoto/DawwNigKJ2ckPeDeDM7jAg/o.jpg",
"alt_text": "alt text for image"
}
},
{
"type": "divider"
},
{
"type": "actions",
"elements": [{
"type": "button",
"text": {
"type": "plain_text",
"text": "Farmhouse",
"emoji": true
},
"value": "click_me_123"
},
{
"type": "button",
"text": {
"type": "plain_text",
"text": "Kin Khao",
"emoji": true
},
"value": "click_me_123",
"url": "https://google.com"
},
{
"type": "button",
"text": {
"type": "plain_text",
"text": "Ler Ros",
"emoji": true
},
"value": "click_me_123",
"url": "https://google.com"
}
]
}
]
}
""
"
では、Block Kitコードを生成してください。