Skip to content

Commit

Permalink
Adding in some docs that were missing for unions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ripark authored and l0lawrence committed May 20, 2024
1 parent b20293c commit 9bd2401
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1051,6 +1051,7 @@ model CommunicationIdentifierModel {
microsoftTeamsApp: MicrosoftTeamsAppIdentifierModel;
}

/** Communication model identifier kind */
union CommunicationIdentifierModelKind {
"unknown",
"communicationUser",
Expand Down Expand Up @@ -1241,6 +1242,7 @@ model AcsMessageChannelEventError {
channelMessage?: string;
}

/** Interactive reply kind */
union AcsInteractiveReplyKind {
/** Messaged interactive reply type is ButtonReply */
"buttonReply",
Expand All @@ -1254,13 +1256,15 @@ union AcsInteractiveReplyKind {
string,
}

/** Message channel kind */
union AcsMessageChannelKind {
/** Updated message channel type is Whatsapp */
"whatsapp",

string,
}

/** Message delivery status */
union AcsMessageDeliveryStatus {
"Read",
"Delivered",
Expand All @@ -1271,6 +1275,7 @@ union AcsMessageDeliveryStatus {
string,
}

/** Worker properties that can be updated */
union AcsRouterUpdatedWorkerProperty {
"AvailableForOffers",
"TotalCapacity",
Expand Down

0 comments on commit 9bd2401

Please sign in to comment.