Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Advanced from model names #4

Closed
wants to merge 1 commit into from
Closed
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 @@ -1533,12 +1533,12 @@
}
}
},
"AcsAdvancedMessageReceivedEventData": {
"AcsMessageReceivedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Communication.AdvancedMessageReceived event.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AcsAdvancedMessageEventData"
"$ref": "#/definitions/AcsMessageEventData"
}
],
"properties": {
Expand Down Expand Up @@ -1566,23 +1566,23 @@
},
"media": {
"description": "The received message media content",
"$ref": "#/definitions/AcsAdvancedMessageMediaContent",
"$ref": "#/definitions/AcsMessageMediaContent",
"type": "object",
"x-ms-client-name": "mediaContent"
},
"context": {
"description": "The received message context",
"$ref": "#/definitions/AcsAdvancedMessageContext",
"$ref": "#/definitions/AcsMessageContext",
"type": "object"
},
"button": {
"description": "The received message button content",
"$ref": "#/definitions/AcsAdvancedMessageButtonContent",
"$ref": "#/definitions/AcsMessageButtonContent",
"type": "object"
},
"interactive": {
"description": "The received message interactive content",
"$ref": "#/definitions/AcsAdvancedMessageInteractiveContent",
"$ref": "#/definitions/AcsMessageInteractiveContent",
"type": "object",
"x-ms-client-name": "interactiveContent"
}
Expand All @@ -1596,12 +1596,12 @@
}
}
},
"AcsAdvancedMessageDeliveryStatusUpdatedEventData": {
"AcsMessageDeliveryStatusUpdatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Communication.AdvancedMessageDeliveryStatusUpdated event.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AcsAdvancedMessageEventData"
"$ref": "#/definitions/AcsMessageEventData"
}
],
"properties": {
Expand All @@ -1621,7 +1621,7 @@
"Unknown"
],
"x-ms-enum": {
"name": "AcsAdvancedMessageDeliveryStatus",
"name": "AcsMessageDeliveryStatus",
"modelAsString": true,
"values": [
{
Expand Down Expand Up @@ -1673,7 +1673,7 @@
}
}
},
"AcsAdvancedMessageEventData": {
"AcsMessageEventData": {
"description": "Schema of common properties of all chat thread events",
"type": "object",
"properties": {
Expand All @@ -1692,7 +1692,7 @@
},
"error": {
"description": "The channel event error",
"$ref": "#/definitions/AcsAdvancedMessageChannelEventError",
"$ref": "#/definitions/AcsMessageChannelEventError",
"type": "object"
}
}
Expand Down Expand Up @@ -2197,8 +2197,8 @@
}
}
},
"AcsAdvancedMessageChannelEventError": {
"description": "Advanced Message Channel Event Error",
"AcsMessageChannelEventError": {
"description": "Message Channel Event Error",
"type": "object",
"properties": {
"channelCode": {
Expand All @@ -2211,8 +2211,8 @@
}
}
},
"AcsAdvancedMessageMediaContent": {
"description": "Advanced Message Media Content",
"AcsMessageMediaContent": {
"description": "Message Media Content",
"type": "object",
"properties": {
"mimeType": {
Expand All @@ -2234,8 +2234,8 @@
}
}
},
"AcsAdvancedMessageContext": {
"description": "Advanced Message Context",
"AcsMessageContext": {
"description": "Message Context",
"type": "object",
"properties": {
"from": {
Expand All @@ -2249,8 +2249,8 @@
}
}
},
"AcsAdvancedMessageButtonContent": {
"description": "Advanced Message Button Content",
"AcsMessageButtonContent": {
"description": "Message Button Content",
"type": "object",
"properties": {
"text": {
Expand All @@ -2263,8 +2263,8 @@
}
}
},
"AcsAdvancedMessageInteractiveContent": {
"description": "Advanced Message Interactive Content",
"AcsMessageInteractiveContent": {
"description": "Message Interactive Content",
"type": "object",
"properties": {
"type": {
Expand Down Expand Up @@ -2297,18 +2297,18 @@
},
"buttonReply": {
"description": "The Message Sent when a customer clicks a button",
"$ref": "#/definitions/AcsAdvancedMessageInteractiveButtonReplyContent",
"$ref": "#/definitions/AcsMessageInteractiveButtonReplyContent",
"type": "object"
},
"listReply": {
"description": "The Message Sent when a customer selects an item from a list",
"$ref": "#/definitions/AcsAdvancedMessageInteractiveListReplyContent",
"$ref": "#/definitions/AcsMessageInteractiveListReplyContent",
"type": "object"
}
}
},
"AcsAdvancedMessageInteractiveButtonReplyContent": {
"description": "Advanced Message Interactive button reply content for a user to business message",
"AcsMessageInteractiveButtonReplyContent": {
"description": "Message Interactive button reply content for a user to business message",
"type": "object",
"properties": {
"id": {
Expand All @@ -2322,8 +2322,8 @@
}
}
},
"AcsAdvancedMessageInteractiveListReplyContent": {
"description": "Advanced Message Interactive list reply content for a user to business message",
"AcsMessageInteractiveListReplyContent": {
"description": "Message Interactive list reply content for a user to business message",
"type": "object",
"properties": {
"id": {
Expand Down