সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
সংজ্ঞা
রূপান্তরফিড সংজ্ঞা
message ConversionFeed {
repeated Conversion data = 1;
}
রূপান্তর সংজ্ঞা
// Info about the conversion rate of a booking "action_link" provided in
// practitioner/facility feed.
message Conversion {
// ...
message CollectionPeriod {
google.type.Date start_date = 1;
google.type.Date end_date = 2;
}
// Period specifies the period that the conversion data corresponds to. Period
// is specified by start_date and end_date, which starts from 00:00 of the
// start_date and ends at 23:59 of the end_date.
// Note: UTC timezone should be used to delineate which transactions fall on
// which dates. (required)
// Example: Date { year:2020 month:10 day 8) represents October 8th, 2020.
CollectionPeriod period = 2;
// Total number of assisted transactions via the above action_link, i.e. the
// the number of completed bookings through the action_link redirected from
// Google. Only provide this value if it is more than 50.
int32 num_transactions = 3;
// Whether num_transactions exceeds 50. If not, do not provide
// num_transactions.
bool num_transactions_gt_50 = 4;
// The number of visits through the action_link redirected from Google.
// Only provide this value if it is more than 50.
int32 num_visits = 5;
// Whether num_visits exceeds 50. If not, do not provide num_visits.
bool num_visits_gt_50 = 6;
// Optional. Which appointment type this conversion data is specific to.
// If unset, it's assumed that the data in this message spans all appointment
// types (unless there is another message that has appointment_type_id set,
// in which case it refers to all types not otherwise covered).
string appointment_type_id = 7;
}
[[["সহজে বোঝা যায়","easyToUnderstand","thumb-up"],["আমার সমস্যার সমাধান হয়েছে","solvedMyProblem","thumb-up"],["অন্যান্য","otherUp","thumb-up"]],[["এতে আমার প্রয়োজনীয় তথ্য নেই","missingTheInformationINeed","thumb-down"],["খুব জটিল / অনেক ধাপ","tooComplicatedTooManySteps","thumb-down"],["পুরনো","outOfDate","thumb-down"],["অনুবাদ সংক্রান্ত সমস্যা","translationIssue","thumb-down"],["নমুনা / কোড সংক্রান্ত সমস্যা","samplesCodeIssue","thumb-down"],["অন্যান্য","otherDown","thumb-down"]],["2025-01-14 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["The conversion feed, defined using protocol buffers but preferably uploaded in JSON format, provides data about booking action link performance."],["Each conversion data point includes a collection period, the number of transactions and visits (only if exceeding 50), and an optional appointment type ID."],["`num_transactions_gt_50` and `num_visits_gt_50` should be set to `true` if the respective values are over 50, otherwise, the corresponding `num_transactions` or `num_visits` field should be omitted."],["Sample JSON feeds and a descriptor file are provided to illustrate the feed structure and expected data format."]]],[]]