Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@ public static async Task<LivePersonConversationRecord> EscalateToAgentAsync(ITur
kind = "req",
id = "2,",
type = "cm.ConsumerRequestConversation",
skillId = skill,
body = new Body { brandId = account }
body = new Body {
brandId = account,
skillId = skill
}
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ public class Body
{
public Authenticateddata authenticatedData { get; set; }
public string brandId { get; set; }
public string skillId { get; set; }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ public class Conversation
public string kind { get; set; }
public string id { get; set; }
public string type { get; set; }
public string skillId { get; set; }
public Body body { get; set; }
}
}
}