Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using Pyx.Core.Models.Chat;
- using Pyx.Mobile.Pages.Screenings;
- using Pyx.Shared.Models.Api.Chat;
- using Rg.Plugins.Popup.Services;
- using Xamarin.Forms;
- namespace Pyx.Mobile.Pages
- {
- public partial class MyPage : ContentPage
- {
- public MyPage()
- {
- InitializeComponent();
- var responseBtn = new UserResponseModel(1, "yes");
- var responseBtn2 = new UserResponseModel(2, "no");
- List<UserResponseModel> inter = new List<UserResponseModel>();
- inter.Add(responseBtn);
- inter.Add(responseBtn2);
- var sentimentModel = new SentimentFollowupModel()
- {
- Interaction = new BotInteraction()
- {
- IsUser = true,
- ShowMessage = true,
- SpokenWord = "Long message for testing by asking if the user still hunguray or not thats all",
- InteractionType = (int)InteractionTypes.Answer,
- UserResponseBtns = inter
- },
- EncounterId = 6,
- EncounterHistoryId = 6
- };
- //Show Sentiment Followup
- Device.BeginInvokeOnMainThread(async () =>
- {
- await PopupNavigation.Instance.PushAsync(new SentimentFollowupPage(sentimentModel), true);
- });
- }
- }
- }
Add Comment
Please, Sign In to add comment