1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647
|
package authoring
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"encoding/json"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/date"
"github.com/gofrs/uuid"
"io"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.0/luis/authoring"
// ApplicationCreateObject properties for creating a new LUIS Application
type ApplicationCreateObject struct {
// Culture - The culture for the new application. It is the language that your app understands and speaks. E.g.: "en-us". Note: the culture cannot be changed after the app is created.
Culture *string `json:"culture,omitempty"`
// Domain - The domain for the new application. Optional. E.g.: Comics.
Domain *string `json:"domain,omitempty"`
// Description - Description of the new application. Optional.
Description *string `json:"description,omitempty"`
// InitialVersionID - The initial version ID. Optional. Default value is: "0.1"
InitialVersionID *string `json:"initialVersionId,omitempty"`
// UsageScenario - Defines the scenario for the new application. Optional. E.g.: IoT.
UsageScenario *string `json:"usageScenario,omitempty"`
// Name - The name for the new application.
Name *string `json:"name,omitempty"`
}
// ApplicationInfoResponse response containing the Application Info.
type ApplicationInfoResponse struct {
autorest.Response `json:"-"`
// ID - The ID (GUID) of the application.
ID *uuid.UUID `json:"id,omitempty"`
// Name - The name of the application.
Name *string `json:"name,omitempty"`
// Description - The description of the application.
Description *string `json:"description,omitempty"`
// Culture - The culture of the application. For example, "en-us".
Culture *string `json:"culture,omitempty"`
// UsageScenario - Defines the scenario for the new application. Optional. For example, IoT.
UsageScenario *string `json:"usageScenario,omitempty"`
// Domain - The domain for the new application. Optional. For example, Comics.
Domain *string `json:"domain,omitempty"`
// VersionsCount - Amount of model versions within the application.
VersionsCount *int32 `json:"versionsCount,omitempty"`
// CreatedDateTime - The version's creation timestamp.
CreatedDateTime *string `json:"createdDateTime,omitempty"`
// Endpoints - The Runtime endpoint URL for this model version.
Endpoints interface{} `json:"endpoints,omitempty"`
// EndpointHitsCount - Number of calls made to this endpoint.
EndpointHitsCount *int32 `json:"endpointHitsCount,omitempty"`
// ActiveVersion - The version ID currently marked as active.
ActiveVersion *string `json:"activeVersion,omitempty"`
}
// ApplicationPublishObject object model for publishing a specific application version.
type ApplicationPublishObject struct {
// VersionID - The version ID to publish.
VersionID *string `json:"versionId,omitempty"`
// IsStaging - Indicates if the staging slot should be used, instead of the Production one.
IsStaging *bool `json:"isStaging,omitempty"`
}
// ApplicationSettings the application settings.
type ApplicationSettings struct {
autorest.Response `json:"-"`
// ID - The application ID.
ID *uuid.UUID `json:"id,omitempty"`
// IsPublic - Setting your application as public allows other people to use your application's endpoint using their own keys for billing purposes.
IsPublic *bool `json:"public,omitempty"`
}
// ApplicationSettingUpdateObject object model for updating an application's settings.
type ApplicationSettingUpdateObject struct {
// IsPublic - Setting your application as public allows other people to use your application's endpoint using their own keys.
IsPublic *bool `json:"public,omitempty"`
}
// ApplicationUpdateObject object model for updating the name or description of an application.
type ApplicationUpdateObject struct {
// Name - The application's new name.
Name *string `json:"name,omitempty"`
// Description - The application's new description.
Description *string `json:"description,omitempty"`
}
// AppVersionSettingObject object model of an application version setting.
type AppVersionSettingObject struct {
// Name - The application version setting name.
Name *string `json:"name,omitempty"`
// Value - The application version setting value.
Value *string `json:"value,omitempty"`
}
// AvailableCulture available culture for using in a new application.
type AvailableCulture struct {
// Name - The language name.
Name *string `json:"name,omitempty"`
// Code - The ISO value for the language.
Code *string `json:"code,omitempty"`
}
// AvailablePrebuiltEntityModel available Prebuilt entity model for using in an application.
type AvailablePrebuiltEntityModel struct {
// Name - The entity name.
Name *string `json:"name,omitempty"`
// Description - The entity description and usage information.
Description *string `json:"description,omitempty"`
// Examples - Usage examples.
Examples *string `json:"examples,omitempty"`
}
// AzureAccountInfoObject defines the Azure account information object.
type AzureAccountInfoObject struct {
// AzureSubscriptionID - The id for the Azure subscription.
AzureSubscriptionID *string `json:"azureSubscriptionId,omitempty"`
// ResourceGroup - The Azure resource group name.
ResourceGroup *string `json:"resourceGroup,omitempty"`
// AccountName - The Azure account name.
AccountName *string `json:"accountName,omitempty"`
}
// BatchLabelExample response when adding a batch of labeled example utterances.
type BatchLabelExample struct {
Value *LabelExampleResponse `json:"value,omitempty"`
HasError *bool `json:"hasError,omitempty"`
Error *OperationStatus `json:"error,omitempty"`
}
// ChildEntity the base child entity type.
type ChildEntity struct {
// ID - The ID (GUID) belonging to a child entity.
ID *uuid.UUID `json:"id,omitempty"`
// Name - The name of a child entity.
Name *string `json:"name,omitempty"`
}
// ClosedList exported Model - A list entity.
type ClosedList struct {
// Name - Name of the list entity.
Name *string `json:"name,omitempty"`
// SubLists - Sublists for the list entity.
SubLists *[]SubClosedList `json:"subLists,omitempty"`
Roles *[]string `json:"roles,omitempty"`
}
// ClosedListEntityExtractor list Entity Extractor.
type ClosedListEntityExtractor struct {
autorest.Response `json:"-"`
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType4EntityExtractor', 'ReadableType4HierarchicalEntityExtractor', 'ReadableType4HierarchicalChildEntityExtractor', 'ReadableType4CompositeEntityExtractor', 'ReadableType4ListEntityExtractor', 'ReadableType4PrebuiltEntityExtractor', 'ReadableType4IntentClassifier', 'ReadableType4PatternAnyEntityExtractor', 'ReadableType4ClosedListEntityExtractor', 'ReadableType4RegexEntityExtractor'
ReadableType ReadableType4 `json:"readableType,omitempty"`
Roles *[]EntityRole `json:"roles,omitempty"`
// SubLists - List of sublists.
SubLists *[]SubClosedListResponse `json:"subLists,omitempty"`
}
// ClosedListModelCreateObject object model for creating a list entity.
type ClosedListModelCreateObject struct {
// SubLists - Sublists for the feature.
SubLists *[]WordListObject `json:"subLists,omitempty"`
// Name - Name of the list entity.
Name *string `json:"name,omitempty"`
}
// ClosedListModelPatchObject object model for adding a batch of sublists to an existing list entity.
type ClosedListModelPatchObject struct {
// SubLists - Sublists to add.
SubLists *[]WordListObject `json:"subLists,omitempty"`
}
// ClosedListModelUpdateObject object model for updating a list entity.
type ClosedListModelUpdateObject struct {
// SubLists - The new sublists for the feature.
SubLists *[]WordListObject `json:"subLists,omitempty"`
// Name - The new name of the list entity.
Name *string `json:"name,omitempty"`
}
// CollaboratorsArray ...
type CollaboratorsArray struct {
// Emails - The email address of the users.
Emails *[]string `json:"emails,omitempty"`
}
// CompositeChildModelCreateObject ...
type CompositeChildModelCreateObject struct {
Name *string `json:"name,omitempty"`
}
// CompositeEntityExtractor a Composite Entity Extractor.
type CompositeEntityExtractor struct {
autorest.Response `json:"-"`
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType3EntityExtractor', 'ReadableType3HierarchicalEntityExtractor', 'ReadableType3HierarchicalChildEntityExtractor', 'ReadableType3CompositeEntityExtractor', 'ReadableType3ListEntityExtractor', 'ReadableType3PrebuiltEntityExtractor', 'ReadableType3IntentClassifier', 'ReadableType3PatternAnyEntityExtractor', 'ReadableType3ClosedListEntityExtractor', 'ReadableType3RegexEntityExtractor'
ReadableType ReadableType3 `json:"readableType,omitempty"`
Roles *[]EntityRole `json:"roles,omitempty"`
// Children - List of child entities.
Children *[]ChildEntity `json:"children,omitempty"`
}
// CompositeEntityModel a composite entity extractor.
type CompositeEntityModel struct {
// Children - Child entities.
Children *[]string `json:"children,omitempty"`
// Name - Entity name.
Name *string `json:"name,omitempty"`
}
// CustomPrebuiltModel a Custom Prebuilt model.
type CustomPrebuiltModel struct {
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType7EntityExtractor', 'ReadableType7HierarchicalEntityExtractor', 'ReadableType7HierarchicalChildEntityExtractor', 'ReadableType7CompositeEntityExtractor', 'ReadableType7ListEntityExtractor', 'ReadableType7PrebuiltEntityExtractor', 'ReadableType7IntentClassifier', 'ReadableType7PatternAnyEntityExtractor', 'ReadableType7ClosedListEntityExtractor', 'ReadableType7RegexEntityExtractor'
ReadableType ReadableType7 `json:"readableType,omitempty"`
// CustomPrebuiltDomainName - The domain name.
CustomPrebuiltDomainName *string `json:"customPrebuiltDomainName,omitempty"`
// CustomPrebuiltModelName - The intent name or entity name.
CustomPrebuiltModelName *string `json:"customPrebuiltModelName,omitempty"`
Roles *[]EntityRole `json:"roles,omitempty"`
}
// EndpointInfo the base class "ProductionOrStagingEndpointInfo" inherits from.
type EndpointInfo struct {
// VersionID - The version ID to publish.
VersionID *string `json:"versionId,omitempty"`
// IsStaging - Indicates if the staging slot should be used, instead of the Production one.
IsStaging *bool `json:"isStaging,omitempty"`
// EndpointURL - The Runtime endpoint URL for this model version.
EndpointURL *string `json:"endpointUrl,omitempty"`
// Region - The target region that the application is published to.
Region *string `json:"region,omitempty"`
// AssignedEndpointKey - The endpoint key.
AssignedEndpointKey *string `json:"assignedEndpointKey,omitempty"`
// EndpointRegion - The endpoint's region.
EndpointRegion *string `json:"endpointRegion,omitempty"`
// FailedRegions - Regions where publishing failed.
FailedRegions *string `json:"failedRegions,omitempty"`
// PublishedDateTime - Timestamp when was last published.
PublishedDateTime *string `json:"publishedDateTime,omitempty"`
}
// EnqueueTrainingResponse response model when requesting to train the model.
type EnqueueTrainingResponse struct {
autorest.Response `json:"-"`
// StatusID - The train request status ID.
StatusID *int32 `json:"statusId,omitempty"`
// Status - Possible values include: 'StatusQueued', 'StatusInProgress', 'StatusUpToDate', 'StatusFail', 'StatusSuccess'
Status Status `json:"status,omitempty"`
}
// EntitiesSuggestionExample predicted/suggested entity.
type EntitiesSuggestionExample struct {
// Text - The utterance. For example, "What's the weather like in seattle?"
Text *string `json:"text,omitempty"`
// TokenizedText - The utterance tokenized.
TokenizedText *[]string `json:"tokenizedText,omitempty"`
// IntentPredictions - Predicted/suggested intents.
IntentPredictions *[]IntentPrediction `json:"intentPredictions,omitempty"`
// EntityPredictions - Predicted/suggested entities.
EntityPredictions *[]EntityPrediction `json:"entityPredictions,omitempty"`
}
// EntityExtractor entity Extractor.
type EntityExtractor struct {
autorest.Response `json:"-"`
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType8EntityExtractor', 'ReadableType8HierarchicalEntityExtractor', 'ReadableType8HierarchicalChildEntityExtractor', 'ReadableType8CompositeEntityExtractor', 'ReadableType8ListEntityExtractor', 'ReadableType8PrebuiltEntityExtractor', 'ReadableType8IntentClassifier', 'ReadableType8PatternAnyEntityExtractor', 'ReadableType8ClosedListEntityExtractor', 'ReadableType8RegexEntityExtractor'
ReadableType ReadableType8 `json:"readableType,omitempty"`
Roles *[]EntityRole `json:"roles,omitempty"`
// CustomPrebuiltDomainName - The domain name.
CustomPrebuiltDomainName *string `json:"customPrebuiltDomainName,omitempty"`
// CustomPrebuiltModelName - The intent name or entity name.
CustomPrebuiltModelName *string `json:"customPrebuiltModelName,omitempty"`
}
// EntityLabel defines the entity type and position of the extracted entity within the example.
type EntityLabel struct {
// EntityName - The entity type.
EntityName *string `json:"entityName,omitempty"`
// StartTokenIndex - The index within the utterance where the extracted entity starts.
StartTokenIndex *int32 `json:"startTokenIndex,omitempty"`
// EndTokenIndex - The index within the utterance where the extracted entity ends.
EndTokenIndex *int32 `json:"endTokenIndex,omitempty"`
// Role - The role of the entity within the utterance.
Role *string `json:"role,omitempty"`
// RoleID - The role Id.
RoleID *string `json:"roleId,omitempty"`
}
// EntityLabelObject defines the entity type and position of the extracted entity within the example.
type EntityLabelObject struct {
// EntityName - The entity type.
EntityName *string `json:"entityName,omitempty"`
// StartCharIndex - The index within the utterance where the extracted entity starts.
StartCharIndex *int32 `json:"startCharIndex,omitempty"`
// EndCharIndex - The index within the utterance where the extracted entity ends.
EndCharIndex *int32 `json:"endCharIndex,omitempty"`
// Role - The role of the entity within the utterance.
Role *string `json:"role,omitempty"`
}
// EntityModelInfo an Entity Extractor model info.
type EntityModelInfo struct {
Roles *[]EntityRole `json:"roles,omitempty"`
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableTypeEntityExtractor', 'ReadableTypeHierarchicalEntityExtractor', 'ReadableTypeHierarchicalChildEntityExtractor', 'ReadableTypeCompositeEntityExtractor', 'ReadableTypeListEntityExtractor', 'ReadableTypePrebuiltEntityExtractor', 'ReadableTypeIntentClassifier', 'ReadableTypePatternAnyEntityExtractor', 'ReadableTypeClosedListEntityExtractor', 'ReadableTypeRegexEntityExtractor'
ReadableType ReadableType `json:"readableType,omitempty"`
}
// EntityPrediction a suggested entity.
type EntityPrediction struct {
// EntityName - The entity's name
EntityName *string `json:"entityName,omitempty"`
// StartTokenIndex - The index within the utterance where the extracted entity starts.
StartTokenIndex *int32 `json:"startTokenIndex,omitempty"`
// EndTokenIndex - The index within the utterance where the extracted entity ends.
EndTokenIndex *int32 `json:"endTokenIndex,omitempty"`
// Phrase - The actual token(s) that comprise the entity.
Phrase *string `json:"phrase,omitempty"`
}
// EntityRole entity extractor role
type EntityRole struct {
autorest.Response `json:"-"`
// ID - The entity role ID.
ID *uuid.UUID `json:"id,omitempty"`
// Name - The entity role name.
Name *string `json:"name,omitempty"`
}
// EntityRoleCreateObject object model for creating an entity role.
type EntityRoleCreateObject struct {
// Name - The entity role name.
Name *string `json:"name,omitempty"`
}
// EntityRoleUpdateObject object model for updating an entity role.
type EntityRoleUpdateObject struct {
// Name - The entity role name.
Name *string `json:"name,omitempty"`
}
// ErrorResponse error response when invoking an operation on the API.
type ErrorResponse struct {
// AdditionalProperties - Unmatched properties from the message are deserialized this collection
AdditionalProperties map[string]interface{} `json:""`
ErrorType *string `json:"errorType,omitempty"`
}
// MarshalJSON is the custom marshaler for ErrorResponse.
func (er ErrorResponse) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if er.ErrorType != nil {
objectMap["errorType"] = er.ErrorType
}
for k, v := range er.AdditionalProperties {
objectMap[k] = v
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ErrorResponse struct.
func (er *ErrorResponse) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
default:
if v != nil {
var additionalProperties interface{}
err = json.Unmarshal(*v, &additionalProperties)
if err != nil {
return err
}
if er.AdditionalProperties == nil {
er.AdditionalProperties = make(map[string]interface{})
}
er.AdditionalProperties[k] = additionalProperties
}
case "errorType":
if v != nil {
var errorType string
err = json.Unmarshal(*v, &errorType)
if err != nil {
return err
}
er.ErrorType = &errorType
}
}
}
return nil
}
// ExampleLabelObject a labeled example utterance.
type ExampleLabelObject struct {
// Text - The example utterance.
Text *string `json:"text,omitempty"`
// EntityLabels - The identified entities within the example utterance.
EntityLabels *[]EntityLabelObject `json:"entityLabels,omitempty"`
// IntentName - The identified intent representing the example utterance.
IntentName *string `json:"intentName,omitempty"`
}
// ExplicitListItem explicit (exception) list item
type ExplicitListItem struct {
autorest.Response `json:"-"`
// ID - The explicit list item ID.
ID *int64 `json:"id,omitempty"`
// ExplicitListItem - The explicit list item value.
ExplicitListItem *string `json:"explicitListItem,omitempty"`
}
// ExplicitListItemCreateObject object model for creating an explicit (exception) list item.
type ExplicitListItemCreateObject struct {
// ExplicitListItem - The explicit list item.
ExplicitListItem *string `json:"explicitListItem,omitempty"`
}
// ExplicitListItemUpdateObject model object for updating an explicit (exception) list item.
type ExplicitListItemUpdateObject struct {
// ExplicitListItem - The explicit list item.
ExplicitListItem *string `json:"explicitListItem,omitempty"`
}
// FeatureInfoObject the base class Features-related response objects inherit from.
type FeatureInfoObject struct {
// ID - A six-digit ID used for Features.
ID *int32 `json:"id,omitempty"`
// Name - The name of the Feature.
Name *string `json:"name,omitempty"`
// IsActive - Indicates if the feature is enabled.
IsActive *bool `json:"isActive,omitempty"`
}
// FeaturesResponseObject model Features, including Patterns and Phraselists.
type FeaturesResponseObject struct {
autorest.Response `json:"-"`
PhraselistFeatures *[]PhraseListFeatureInfo `json:"phraselistFeatures,omitempty"`
PatternFeatures *[]PatternFeatureInfo `json:"patternFeatures,omitempty"`
}
// HierarchicalChildEntity a Hierarchical Child Entity.
type HierarchicalChildEntity struct {
autorest.Response `json:"-"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType6EntityExtractor', 'ReadableType6HierarchicalEntityExtractor', 'ReadableType6HierarchicalChildEntityExtractor', 'ReadableType6CompositeEntityExtractor', 'ReadableType6ListEntityExtractor', 'ReadableType6PrebuiltEntityExtractor', 'ReadableType6IntentClassifier', 'ReadableType6PatternAnyEntityExtractor', 'ReadableType6ClosedListEntityExtractor', 'ReadableType6RegexEntityExtractor'
ReadableType ReadableType6 `json:"readableType,omitempty"`
// ID - The ID (GUID) belonging to a child entity.
ID *uuid.UUID `json:"id,omitempty"`
// Name - The name of a child entity.
Name *string `json:"name,omitempty"`
}
// HierarchicalChildModelCreateObject ...
type HierarchicalChildModelCreateObject struct {
Name *string `json:"name,omitempty"`
}
// HierarchicalChildModelUpdateObject ...
type HierarchicalChildModelUpdateObject struct {
Name *string `json:"name,omitempty"`
}
// HierarchicalEntityExtractor hierarchical Entity Extractor.
type HierarchicalEntityExtractor struct {
autorest.Response `json:"-"`
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType2EntityExtractor', 'ReadableType2HierarchicalEntityExtractor', 'ReadableType2HierarchicalChildEntityExtractor', 'ReadableType2CompositeEntityExtractor', 'ReadableType2ListEntityExtractor', 'ReadableType2PrebuiltEntityExtractor', 'ReadableType2IntentClassifier', 'ReadableType2PatternAnyEntityExtractor', 'ReadableType2ClosedListEntityExtractor', 'ReadableType2RegexEntityExtractor'
ReadableType ReadableType2 `json:"readableType,omitempty"`
Roles *[]EntityRole `json:"roles,omitempty"`
// Children - List of child entities.
Children *[]ChildEntity `json:"children,omitempty"`
}
// HierarchicalEntityModel a hierarchical entity extractor.
type HierarchicalEntityModel struct {
// Children - Child entities.
Children *[]string `json:"children,omitempty"`
// Name - Entity name.
Name *string `json:"name,omitempty"`
}
// HierarchicalModel ...
type HierarchicalModel struct {
Name *string `json:"name,omitempty"`
Children *[]string `json:"children,omitempty"`
Inherits *PrebuiltDomainObject `json:"inherits,omitempty"`
Roles *[]string `json:"roles,omitempty"`
}
// Int32 ...
type Int32 struct {
autorest.Response `json:"-"`
Value *int32 `json:"value,omitempty"`
}
// Int64 ...
type Int64 struct {
autorest.Response `json:"-"`
Value *int64 `json:"value,omitempty"`
}
// IntentClassifier intent Classifier.
type IntentClassifier struct {
autorest.Response `json:"-"`
// CustomPrebuiltDomainName - The domain name.
CustomPrebuiltDomainName *string `json:"customPrebuiltDomainName,omitempty"`
// CustomPrebuiltModelName - The intent name or entity name.
CustomPrebuiltModelName *string `json:"customPrebuiltModelName,omitempty"`
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableTypeEntityExtractor', 'ReadableTypeHierarchicalEntityExtractor', 'ReadableTypeHierarchicalChildEntityExtractor', 'ReadableTypeCompositeEntityExtractor', 'ReadableTypeListEntityExtractor', 'ReadableTypePrebuiltEntityExtractor', 'ReadableTypeIntentClassifier', 'ReadableTypePatternAnyEntityExtractor', 'ReadableTypeClosedListEntityExtractor', 'ReadableTypeRegexEntityExtractor'
ReadableType ReadableType `json:"readableType,omitempty"`
}
// IntentPrediction a suggested intent.
type IntentPrediction struct {
// Name - The intent's name
Name *string `json:"name,omitempty"`
// Score - The intent's score, based on the prediction model.
Score *float64 `json:"score,omitempty"`
}
// IntentsSuggestionExample predicted/suggested intent.
type IntentsSuggestionExample struct {
// Text - The utterance. For example, "What's the weather like in seattle?"
Text *string `json:"text,omitempty"`
// TokenizedText - The tokenized utterance.
TokenizedText *[]string `json:"tokenizedText,omitempty"`
// IntentPredictions - Predicted/suggested intents.
IntentPredictions *[]IntentPrediction `json:"intentPredictions,omitempty"`
// EntityPredictions - Predicted/suggested entities.
EntityPredictions *[]EntityPrediction `json:"entityPredictions,omitempty"`
}
// JSONEntity exported Model - Extracted Entity from utterance.
type JSONEntity struct {
// StartPos - The index within the utterance where the extracted entity starts.
StartPos *int32 `json:"startPos,omitempty"`
// EndPos - The index within the utterance where the extracted entity ends.
EndPos *int32 `json:"endPos,omitempty"`
// Entity - The entity name.
Entity *string `json:"entity,omitempty"`
// Role - The role of the entity within the utterance.
Role *string `json:"role,omitempty"`
}
// JSONModelFeature exported Model - Phraselist Model Feature.
type JSONModelFeature struct {
// Activated - Indicates if the feature is enabled.
Activated *bool `json:"activated,omitempty"`
// Name - The Phraselist name.
Name *string `json:"name,omitempty"`
// Words - List of comma-separated phrases that represent the Phraselist.
Words *string `json:"words,omitempty"`
// Mode - An interchangeable phrase list feature serves as a list of synonyms for training. A non-exchangeable phrase list serves as separate features for training. So, if your non-interchangeable phrase list contains 5 phrases, they will be mapped to 5 separate features. You can think of the non-interchangeable phrase list as an additional bag of words to add to LUIS existing vocabulary features. It is used as a lexicon lookup feature where its value is 1 if the lexicon contains a given word or 0 if it doesn’t. Default value is true.
Mode *bool `json:"mode,omitempty"`
}
// JSONRegexFeature exported Model - A Pattern feature.
type JSONRegexFeature struct {
// Pattern - The Regular Expression to match.
Pattern *string `json:"pattern,omitempty"`
// Activated - Indicates if the Pattern feature is enabled.
Activated *bool `json:"activated,omitempty"`
// Name - Name of the feature.
Name *string `json:"name,omitempty"`
}
// JSONUtterance exported Model - Utterance that was used to train the model.
type JSONUtterance struct {
// Text - The utterance.
Text *string `json:"text,omitempty"`
// Intent - The matched intent.
Intent *string `json:"intent,omitempty"`
// Entities - The matched entities.
Entities *[]JSONEntity `json:"entities,omitempty"`
}
// LabeledUtterance a prediction and label pair of an example.
type LabeledUtterance struct {
// ID - ID of Labeled Utterance.
ID *int32 `json:"id,omitempty"`
// Text - The utterance. For example, "What's the weather like in seattle?"
Text *string `json:"text,omitempty"`
// TokenizedText - The utterance tokenized.
TokenizedText *[]string `json:"tokenizedText,omitempty"`
// IntentLabel - The intent matching the example.
IntentLabel *string `json:"intentLabel,omitempty"`
// EntityLabels - The entities matching the example.
EntityLabels *[]EntityLabel `json:"entityLabels,omitempty"`
// IntentPredictions - List of suggested intents.
IntentPredictions *[]IntentPrediction `json:"intentPredictions,omitempty"`
// EntityPredictions - List of suggested entities.
EntityPredictions *[]EntityPrediction `json:"entityPredictions,omitempty"`
}
// LabelExampleResponse response when adding a labeled example utterance.
type LabelExampleResponse struct {
autorest.Response `json:"-"`
// UtteranceText - The example utterance.
UtteranceText *string `json:"UtteranceText,omitempty"`
// ExampleID - The newly created sample ID.
ExampleID *int32 `json:"ExampleId,omitempty"`
}
// LabelTextObject an object containing the example utterance's text.
type LabelTextObject struct {
// ID - The ID of the Label.
ID *int32 `json:"id,omitempty"`
// Text - The text of the label.
Text *string `json:"text,omitempty"`
}
// ListApplicationInfoResponse ...
type ListApplicationInfoResponse struct {
autorest.Response `json:"-"`
Value *[]ApplicationInfoResponse `json:"value,omitempty"`
}
// ListAppVersionSettingObject ...
type ListAppVersionSettingObject struct {
autorest.Response `json:"-"`
Value *[]AppVersionSettingObject `json:"value,omitempty"`
}
// ListAvailableCulture ...
type ListAvailableCulture struct {
autorest.Response `json:"-"`
Value *[]AvailableCulture `json:"value,omitempty"`
}
// ListAvailablePrebuiltEntityModel ...
type ListAvailablePrebuiltEntityModel struct {
autorest.Response `json:"-"`
Value *[]AvailablePrebuiltEntityModel `json:"value,omitempty"`
}
// ListAzureAccountInfoObject ...
type ListAzureAccountInfoObject struct {
autorest.Response `json:"-"`
Value *[]AzureAccountInfoObject `json:"value,omitempty"`
}
// ListBatchLabelExample ...
type ListBatchLabelExample struct {
autorest.Response `json:"-"`
Value *[]BatchLabelExample `json:"value,omitempty"`
}
// ListClosedListEntityExtractor ...
type ListClosedListEntityExtractor struct {
autorest.Response `json:"-"`
Value *[]ClosedListEntityExtractor `json:"value,omitempty"`
}
// ListCompositeEntityExtractor ...
type ListCompositeEntityExtractor struct {
autorest.Response `json:"-"`
Value *[]CompositeEntityExtractor `json:"value,omitempty"`
}
// ListCustomPrebuiltModel ...
type ListCustomPrebuiltModel struct {
autorest.Response `json:"-"`
Value *[]CustomPrebuiltModel `json:"value,omitempty"`
}
// ListEntitiesSuggestionExample ...
type ListEntitiesSuggestionExample struct {
autorest.Response `json:"-"`
Value *[]EntitiesSuggestionExample `json:"value,omitempty"`
}
// ListEntityExtractor ...
type ListEntityExtractor struct {
autorest.Response `json:"-"`
Value *[]EntityExtractor `json:"value,omitempty"`
}
// ListEntityRole ...
type ListEntityRole struct {
autorest.Response `json:"-"`
Value *[]EntityRole `json:"value,omitempty"`
}
// ListExplicitListItem ...
type ListExplicitListItem struct {
autorest.Response `json:"-"`
Value *[]ExplicitListItem `json:"value,omitempty"`
}
// ListHierarchicalEntityExtractor ...
type ListHierarchicalEntityExtractor struct {
autorest.Response `json:"-"`
Value *[]HierarchicalEntityExtractor `json:"value,omitempty"`
}
// ListIntentClassifier ...
type ListIntentClassifier struct {
autorest.Response `json:"-"`
Value *[]IntentClassifier `json:"value,omitempty"`
}
// ListIntentsSuggestionExample ...
type ListIntentsSuggestionExample struct {
autorest.Response `json:"-"`
Value *[]IntentsSuggestionExample `json:"value,omitempty"`
}
// ListLabeledUtterance ...
type ListLabeledUtterance struct {
autorest.Response `json:"-"`
Value *[]LabeledUtterance `json:"value,omitempty"`
}
// ListLabelTextObject ...
type ListLabelTextObject struct {
autorest.Response `json:"-"`
Value *[]LabelTextObject `json:"value,omitempty"`
}
// ListModelInfoResponse ...
type ListModelInfoResponse struct {
autorest.Response `json:"-"`
Value *[]ModelInfoResponse `json:"value,omitempty"`
}
// ListModelTrainingInfo ...
type ListModelTrainingInfo struct {
autorest.Response `json:"-"`
Value *[]ModelTrainingInfo `json:"value,omitempty"`
}
// ListPatternAnyEntityExtractor ...
type ListPatternAnyEntityExtractor struct {
autorest.Response `json:"-"`
Value *[]PatternAnyEntityExtractor `json:"value,omitempty"`
}
// ListPatternFeatureInfo ...
type ListPatternFeatureInfo struct {
autorest.Response `json:"-"`
Value *[]PatternFeatureInfo `json:"value,omitempty"`
}
// ListPatternRuleInfo ...
type ListPatternRuleInfo struct {
autorest.Response `json:"-"`
Value *[]PatternRuleInfo `json:"value,omitempty"`
}
// ListPhraseListFeatureInfo ...
type ListPhraseListFeatureInfo struct {
autorest.Response `json:"-"`
Value *[]PhraseListFeatureInfo `json:"value,omitempty"`
}
// ListPrebuiltDomain ...
type ListPrebuiltDomain struct {
autorest.Response `json:"-"`
Value *[]PrebuiltDomain `json:"value,omitempty"`
}
// ListPrebuiltEntityExtractor ...
type ListPrebuiltEntityExtractor struct {
autorest.Response `json:"-"`
Value *[]PrebuiltEntityExtractor `json:"value,omitempty"`
}
// ListRegexEntityExtractor ...
type ListRegexEntityExtractor struct {
autorest.Response `json:"-"`
Value *[]RegexEntityExtractor `json:"value,omitempty"`
}
// ListString ...
type ListString struct {
autorest.Response `json:"-"`
Value *[]string `json:"value,omitempty"`
}
// ListUUID ...
type ListUUID struct {
autorest.Response `json:"-"`
Value *[]uuid.UUID `json:"value,omitempty"`
}
// ListVersionInfo ...
type ListVersionInfo struct {
autorest.Response `json:"-"`
Value *[]VersionInfo `json:"value,omitempty"`
}
// LuisApp exported Model - An exported LUIS Application.
type LuisApp struct {
autorest.Response `json:"-"`
// AdditionalProperties - Unmatched properties from the message are deserialized this collection
AdditionalProperties map[string]interface{} `json:""`
// Name - The name of the application.
Name *string `json:"name,omitempty"`
// VersionID - The version ID of the application that was exported.
VersionID *string `json:"versionId,omitempty"`
// Desc - The description of the application.
Desc *string `json:"desc,omitempty"`
// Culture - The culture of the application. E.g.: en-us.
Culture *string `json:"culture,omitempty"`
// Intents - List of intents.
Intents *[]HierarchicalModel `json:"intents,omitempty"`
// Entities - List of entities.
Entities *[]HierarchicalModel `json:"entities,omitempty"`
// ClosedLists - List of list entities.
ClosedLists *[]ClosedList `json:"closedLists,omitempty"`
// Composites - List of composite entities.
Composites *[]HierarchicalModel `json:"composites,omitempty"`
// PatternAnyEntities - List of Pattern.Any entities.
PatternAnyEntities *[]PatternAny `json:"patternAnyEntities,omitempty"`
// RegexEntities - List of regular expression entities.
RegexEntities *[]RegexEntity `json:"regex_entities,omitempty"`
// PrebuiltEntities - List of prebuilt entities.
PrebuiltEntities *[]PrebuiltEntity `json:"prebuiltEntities,omitempty"`
// RegexFeatures - List of pattern features.
RegexFeatures *[]JSONRegexFeature `json:"regex_features,omitempty"`
// ModelFeatures - List of model features.
ModelFeatures *[]JSONModelFeature `json:"model_features,omitempty"`
// Patterns - List of patterns.
Patterns *[]PatternRule `json:"patterns,omitempty"`
// Utterances - List of example utterances.
Utterances *[]JSONUtterance `json:"utterances,omitempty"`
}
// MarshalJSON is the custom marshaler for LuisApp.
func (la LuisApp) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if la.Name != nil {
objectMap["name"] = la.Name
}
if la.VersionID != nil {
objectMap["versionId"] = la.VersionID
}
if la.Desc != nil {
objectMap["desc"] = la.Desc
}
if la.Culture != nil {
objectMap["culture"] = la.Culture
}
if la.Intents != nil {
objectMap["intents"] = la.Intents
}
if la.Entities != nil {
objectMap["entities"] = la.Entities
}
if la.ClosedLists != nil {
objectMap["closedLists"] = la.ClosedLists
}
if la.Composites != nil {
objectMap["composites"] = la.Composites
}
if la.PatternAnyEntities != nil {
objectMap["patternAnyEntities"] = la.PatternAnyEntities
}
if la.RegexEntities != nil {
objectMap["regex_entities"] = la.RegexEntities
}
if la.PrebuiltEntities != nil {
objectMap["prebuiltEntities"] = la.PrebuiltEntities
}
if la.RegexFeatures != nil {
objectMap["regex_features"] = la.RegexFeatures
}
if la.ModelFeatures != nil {
objectMap["model_features"] = la.ModelFeatures
}
if la.Patterns != nil {
objectMap["patterns"] = la.Patterns
}
if la.Utterances != nil {
objectMap["utterances"] = la.Utterances
}
for k, v := range la.AdditionalProperties {
objectMap[k] = v
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for LuisApp struct.
func (la *LuisApp) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
default:
if v != nil {
var additionalProperties interface{}
err = json.Unmarshal(*v, &additionalProperties)
if err != nil {
return err
}
if la.AdditionalProperties == nil {
la.AdditionalProperties = make(map[string]interface{})
}
la.AdditionalProperties[k] = additionalProperties
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
la.Name = &name
}
case "versionId":
if v != nil {
var versionID string
err = json.Unmarshal(*v, &versionID)
if err != nil {
return err
}
la.VersionID = &versionID
}
case "desc":
if v != nil {
var desc string
err = json.Unmarshal(*v, &desc)
if err != nil {
return err
}
la.Desc = &desc
}
case "culture":
if v != nil {
var culture string
err = json.Unmarshal(*v, &culture)
if err != nil {
return err
}
la.Culture = &culture
}
case "intents":
if v != nil {
var intents []HierarchicalModel
err = json.Unmarshal(*v, &intents)
if err != nil {
return err
}
la.Intents = &intents
}
case "entities":
if v != nil {
var entities []HierarchicalModel
err = json.Unmarshal(*v, &entities)
if err != nil {
return err
}
la.Entities = &entities
}
case "closedLists":
if v != nil {
var closedLists []ClosedList
err = json.Unmarshal(*v, &closedLists)
if err != nil {
return err
}
la.ClosedLists = &closedLists
}
case "composites":
if v != nil {
var composites []HierarchicalModel
err = json.Unmarshal(*v, &composites)
if err != nil {
return err
}
la.Composites = &composites
}
case "patternAnyEntities":
if v != nil {
var patternAnyEntities []PatternAny
err = json.Unmarshal(*v, &patternAnyEntities)
if err != nil {
return err
}
la.PatternAnyEntities = &patternAnyEntities
}
case "regex_entities":
if v != nil {
var regexEntities []RegexEntity
err = json.Unmarshal(*v, ®exEntities)
if err != nil {
return err
}
la.RegexEntities = ®exEntities
}
case "prebuiltEntities":
if v != nil {
var prebuiltEntities []PrebuiltEntity
err = json.Unmarshal(*v, &prebuiltEntities)
if err != nil {
return err
}
la.PrebuiltEntities = &prebuiltEntities
}
case "regex_features":
if v != nil {
var regexFeatures []JSONRegexFeature
err = json.Unmarshal(*v, ®exFeatures)
if err != nil {
return err
}
la.RegexFeatures = ®exFeatures
}
case "model_features":
if v != nil {
var modelFeatures []JSONModelFeature
err = json.Unmarshal(*v, &modelFeatures)
if err != nil {
return err
}
la.ModelFeatures = &modelFeatures
}
case "patterns":
if v != nil {
var patterns []PatternRule
err = json.Unmarshal(*v, &patterns)
if err != nil {
return err
}
la.Patterns = &patterns
}
case "utterances":
if v != nil {
var utterances []JSONUtterance
err = json.Unmarshal(*v, &utterances)
if err != nil {
return err
}
la.Utterances = &utterances
}
}
}
return nil
}
// ModelCreateObject object model for creating a new entity extractor.
type ModelCreateObject struct {
// Name - Name of the new entity extractor.
Name *string `json:"name,omitempty"`
}
// ModelInfo base type used in entity types.
type ModelInfo struct {
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableTypeEntityExtractor', 'ReadableTypeHierarchicalEntityExtractor', 'ReadableTypeHierarchicalChildEntityExtractor', 'ReadableTypeCompositeEntityExtractor', 'ReadableTypeListEntityExtractor', 'ReadableTypePrebuiltEntityExtractor', 'ReadableTypeIntentClassifier', 'ReadableTypePatternAnyEntityExtractor', 'ReadableTypeClosedListEntityExtractor', 'ReadableTypeRegexEntityExtractor'
ReadableType ReadableType `json:"readableType,omitempty"`
}
// ModelInfoResponse an application model info.
type ModelInfoResponse struct {
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType1EntityExtractor', 'ReadableType1HierarchicalEntityExtractor', 'ReadableType1HierarchicalChildEntityExtractor', 'ReadableType1CompositeEntityExtractor', 'ReadableType1ListEntityExtractor', 'ReadableType1PrebuiltEntityExtractor', 'ReadableType1IntentClassifier', 'ReadableType1PatternAnyEntityExtractor', 'ReadableType1ClosedListEntityExtractor', 'ReadableType1RegexEntityExtractor'
ReadableType ReadableType1 `json:"readableType,omitempty"`
Roles *[]EntityRole `json:"roles,omitempty"`
// Children - List of child entities.
Children *[]ChildEntity `json:"children,omitempty"`
// SubLists - List of sublists.
SubLists *[]SubClosedListResponse `json:"subLists,omitempty"`
// CustomPrebuiltDomainName - The domain name.
CustomPrebuiltDomainName *string `json:"customPrebuiltDomainName,omitempty"`
// CustomPrebuiltModelName - The intent name or entity name.
CustomPrebuiltModelName *string `json:"customPrebuiltModelName,omitempty"`
// RegexPattern - The Regular Expression entity pattern.
RegexPattern *string `json:"regexPattern,omitempty"`
ExplicitList *[]ExplicitListItem `json:"explicitList,omitempty"`
}
// ModelTrainingDetails model Training Details.
type ModelTrainingDetails struct {
// StatusID - The train request status ID.
StatusID *int32 `json:"statusId,omitempty"`
// Status - Possible values include: 'Status1Queued', 'Status1InProgress', 'Status1UpToDate', 'Status1Fail', 'Status1Success'
Status Status1 `json:"status,omitempty"`
// ExampleCount - The count of examples used to train the model.
ExampleCount *int32 `json:"exampleCount,omitempty"`
// TrainingDateTime - When the model was trained.
TrainingDateTime *date.Time `json:"trainingDateTime,omitempty"`
// FailureReason - Reason for the training failure.
FailureReason *string `json:"failureReason,omitempty"`
}
// ModelTrainingInfo model Training Info.
type ModelTrainingInfo struct {
// ModelID - The ID (GUID) of the model.
ModelID *uuid.UUID `json:"modelId,omitempty"`
Details *ModelTrainingDetails `json:"details,omitempty"`
}
// ModelUpdateObject object model for updating an intent classifier.
type ModelUpdateObject struct {
// Name - The entity's new name.
Name *string `json:"name,omitempty"`
}
// OperationError operation error details when invoking an operation on the API.
type OperationError struct {
Code *string `json:"code,omitempty"`
Message *string `json:"message,omitempty"`
}
// OperationStatus response of an Operation status.
type OperationStatus struct {
autorest.Response `json:"-"`
// Code - Status Code. Possible values include: 'Failed', 'FAILED', 'Success'
Code OperationStatusType `json:"code,omitempty"`
// Message - Status details.
Message *string `json:"message,omitempty"`
}
// PatternAny pattern.Any Entity Extractor.
type PatternAny struct {
Name *string `json:"name,omitempty"`
ExplicitList *[]string `json:"explicitList,omitempty"`
Roles *[]string `json:"roles,omitempty"`
}
// PatternAnyEntityExtractor pattern.Any Entity Extractor.
type PatternAnyEntityExtractor struct {
autorest.Response `json:"-"`
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType10EntityExtractor', 'ReadableType10HierarchicalEntityExtractor', 'ReadableType10HierarchicalChildEntityExtractor', 'ReadableType10CompositeEntityExtractor', 'ReadableType10ListEntityExtractor', 'ReadableType10PrebuiltEntityExtractor', 'ReadableType10IntentClassifier', 'ReadableType10PatternAnyEntityExtractor', 'ReadableType10ClosedListEntityExtractor', 'ReadableType10RegexEntityExtractor'
ReadableType ReadableType10 `json:"readableType,omitempty"`
Roles *[]EntityRole `json:"roles,omitempty"`
ExplicitList *[]ExplicitListItem `json:"explicitList,omitempty"`
}
// PatternAnyModelCreateObject model object for creating a Pattern.Any entity model.
type PatternAnyModelCreateObject struct {
// Name - The model name.
Name *string `json:"name,omitempty"`
// ExplicitList - The Pattern.Any explicit list.
ExplicitList *[]string `json:"explicitList,omitempty"`
}
// PatternAnyModelUpdateObject model object for updating a Pattern.Any entity model.
type PatternAnyModelUpdateObject struct {
// Name - The model name.
Name *string `json:"name,omitempty"`
// ExplicitList - The Pattern.Any explicit list.
ExplicitList *[]string `json:"explicitList,omitempty"`
}
// PatternCreateObject object model for creating a Pattern feature.
type PatternCreateObject struct {
// Pattern - The Regular Expression to match.
Pattern *string `json:"pattern,omitempty"`
// Name - Name of the feature.
Name *string `json:"name,omitempty"`
}
// PatternFeatureInfo pattern feature.
type PatternFeatureInfo struct {
// Pattern - The Regular Expression to match.
Pattern *string `json:"pattern,omitempty"`
// ID - A six-digit ID used for Features.
ID *int32 `json:"id,omitempty"`
// Name - The name of the Feature.
Name *string `json:"name,omitempty"`
// IsActive - Indicates if the feature is enabled.
IsActive *bool `json:"isActive,omitempty"`
}
// PatternRule pattern
type PatternRule struct {
// Pattern - The pattern text.
Pattern *string `json:"pattern,omitempty"`
// Intent - The intent's name where the pattern belongs to.
Intent *string `json:"intent,omitempty"`
}
// PatternRuleCreateObject object model for creating a pattern
type PatternRuleCreateObject struct {
// Pattern - The pattern text.
Pattern *string `json:"pattern,omitempty"`
// Intent - The intent's name which the pattern belongs to.
Intent *string `json:"intent,omitempty"`
}
// PatternRuleInfo pattern rule
type PatternRuleInfo struct {
autorest.Response `json:"-"`
// ID - The pattern ID.
ID *uuid.UUID `json:"id,omitempty"`
// Pattern - The pattern text.
Pattern *string `json:"pattern,omitempty"`
// Intent - The intent's name where the pattern belongs to.
Intent *string `json:"intent,omitempty"`
}
// PatternRuleUpdateObject object model for updating a pattern.
type PatternRuleUpdateObject struct {
// ID - The pattern ID.
ID *uuid.UUID `json:"id,omitempty"`
// Pattern - The pattern text.
Pattern *string `json:"pattern,omitempty"`
// Intent - The intent's name which the pattern belongs to.
Intent *string `json:"intent,omitempty"`
}
// PatternUpdateObject object model for updating an existing Pattern feature.
type PatternUpdateObject struct {
// Pattern - The Regular Expression to match.
Pattern *string `json:"pattern,omitempty"`
// Name - Name of the feature.
Name *string `json:"name,omitempty"`
// IsActive - Indicates if the Pattern feature is enabled.
IsActive *bool `json:"isActive,omitempty"`
}
// PersonalAssistantsResponse response containing user's endpoint keys and the endpoint URLs of the
// prebuilt Cortana applications.
type PersonalAssistantsResponse struct {
autorest.Response `json:"-"`
EndpointKeys *[]uuid.UUID `json:"endpointKeys,omitempty"`
EndpointUrls map[string]*string `json:"endpointUrls"`
}
// MarshalJSON is the custom marshaler for PersonalAssistantsResponse.
func (par PersonalAssistantsResponse) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if par.EndpointKeys != nil {
objectMap["endpointKeys"] = par.EndpointKeys
}
if par.EndpointUrls != nil {
objectMap["endpointUrls"] = par.EndpointUrls
}
return json.Marshal(objectMap)
}
// PhraselistCreateObject object model for creating a phraselist model.
type PhraselistCreateObject struct {
// Phrases - List of comma-separated phrases that represent the Phraselist.
Phrases *string `json:"phrases,omitempty"`
// Name - The Phraselist name.
Name *string `json:"name,omitempty"`
// IsExchangeable - An interchangeable phrase list feature serves as a list of synonyms for training. A non-exchangeable phrase list serves as separate features for training. So, if your non-interchangeable phrase list contains 5 phrases, they will be mapped to 5 separate features. You can think of the non-interchangeable phrase list as an additional bag of words to add to LUIS existing vocabulary features. It is used as a lexicon lookup feature where its value is 1 if the lexicon contains a given word or 0 if it doesn’t. Default value is true.
IsExchangeable *bool `json:"isExchangeable,omitempty"`
}
// PhraseListFeatureInfo phraselist Feature.
type PhraseListFeatureInfo struct {
autorest.Response `json:"-"`
// Phrases - A list of comma-separated values.
Phrases *string `json:"phrases,omitempty"`
// IsExchangeable - An exchangeable phrase list feature are serves as single feature to the LUIS underlying training algorithm. It is used as a lexicon lookup feature where its value is 1 if the lexicon contains a given word or 0 if it doesn’t. Think of an exchangeable as a synonyms list. A non-exchangeable phrase list feature has all the phrases in the list serve as separate features to the underlying training algorithm. So, if you your phrase list feature contains 5 phrases, they will be mapped to 5 separate features. You can think of the non-exchangeable phrase list feature as an additional bag of words that you are willing to add to LUIS existing vocabulary features. Think of a non-exchangeable as set of different words. Default value is true.
IsExchangeable *bool `json:"isExchangeable,omitempty"`
// ID - A six-digit ID used for Features.
ID *int32 `json:"id,omitempty"`
// Name - The name of the Feature.
Name *string `json:"name,omitempty"`
// IsActive - Indicates if the feature is enabled.
IsActive *bool `json:"isActive,omitempty"`
}
// PhraselistUpdateObject object model for updating a Phraselist.
type PhraselistUpdateObject struct {
// Phrases - List of comma-separated phrases that represent the Phraselist.
Phrases *string `json:"phrases,omitempty"`
// Name - The Phraselist name.
Name *string `json:"name,omitempty"`
// IsActive - Indicates if the Phraselist is enabled.
IsActive *bool `json:"isActive,omitempty"`
// IsExchangeable - An exchangeable phrase list feature are serves as single feature to the LUIS underlying training algorithm. It is used as a lexicon lookup feature where its value is 1 if the lexicon contains a given word or 0 if it doesn’t. Think of an exchangeable as a synonyms list. A non-exchangeable phrase list feature has all the phrases in the list serve as separate features to the underlying training algorithm. So, if you your phrase list feature contains 5 phrases, they will be mapped to 5 separate features. You can think of the non-exchangeable phrase list feature as an additional bag of words that you are willing to add to LUIS existing vocabulary features. Think of a non-exchangeable as set of different words. Default value is true.
IsExchangeable *bool `json:"isExchangeable,omitempty"`
}
// PrebuiltDomain prebuilt Domain.
type PrebuiltDomain struct {
Name *string `json:"name,omitempty"`
Culture *string `json:"culture,omitempty"`
Description *string `json:"description,omitempty"`
Examples *string `json:"examples,omitempty"`
Intents *[]PrebuiltDomainItem `json:"intents,omitempty"`
Entities *[]PrebuiltDomainItem `json:"entities,omitempty"`
}
// PrebuiltDomainCreateBaseObject a model object containing the name of the custom prebuilt entity and the
// name of the domain to which this model belongs.
type PrebuiltDomainCreateBaseObject struct {
// DomainName - The domain name.
DomainName *string `json:"domainName,omitempty"`
}
// PrebuiltDomainCreateObject a prebuilt domain create object containing the name and culture of the
// domain.
type PrebuiltDomainCreateObject struct {
// DomainName - The domain name.
DomainName *string `json:"domainName,omitempty"`
// Culture - The culture of the new domain.
Culture *string `json:"culture,omitempty"`
}
// PrebuiltDomainItem ...
type PrebuiltDomainItem struct {
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
Examples *string `json:"examples,omitempty"`
}
// PrebuiltDomainModelCreateObject a model object containing the name of the custom prebuilt intent or
// entity and the name of the domain to which this model belongs.
type PrebuiltDomainModelCreateObject struct {
// DomainName - The domain name.
DomainName *string `json:"domainName,omitempty"`
// ModelName - The intent name or entity name.
ModelName *string `json:"modelName,omitempty"`
}
// PrebuiltDomainObject ...
type PrebuiltDomainObject struct {
DomainName *string `json:"domain_name,omitempty"`
ModelName *string `json:"model_name,omitempty"`
}
// PrebuiltEntity prebuilt Entity Extractor.
type PrebuiltEntity struct {
Name *string `json:"name,omitempty"`
Roles *[]string `json:"roles,omitempty"`
}
// PrebuiltEntityExtractor prebuilt Entity Extractor.
type PrebuiltEntityExtractor struct {
autorest.Response `json:"-"`
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType5EntityExtractor', 'ReadableType5HierarchicalEntityExtractor', 'ReadableType5HierarchicalChildEntityExtractor', 'ReadableType5CompositeEntityExtractor', 'ReadableType5ListEntityExtractor', 'ReadableType5PrebuiltEntityExtractor', 'ReadableType5IntentClassifier', 'ReadableType5PatternAnyEntityExtractor', 'ReadableType5ClosedListEntityExtractor', 'ReadableType5RegexEntityExtractor'
ReadableType ReadableType5 `json:"readableType,omitempty"`
Roles *[]EntityRole `json:"roles,omitempty"`
}
// ProductionOrStagingEndpointInfo ...
type ProductionOrStagingEndpointInfo struct {
autorest.Response `json:"-"`
// VersionID - The version ID to publish.
VersionID *string `json:"versionId,omitempty"`
// IsStaging - Indicates if the staging slot should be used, instead of the Production one.
IsStaging *bool `json:"isStaging,omitempty"`
// EndpointURL - The Runtime endpoint URL for this model version.
EndpointURL *string `json:"endpointUrl,omitempty"`
// Region - The target region that the application is published to.
Region *string `json:"region,omitempty"`
// AssignedEndpointKey - The endpoint key.
AssignedEndpointKey *string `json:"assignedEndpointKey,omitempty"`
// EndpointRegion - The endpoint's region.
EndpointRegion *string `json:"endpointRegion,omitempty"`
// FailedRegions - Regions where publishing failed.
FailedRegions *string `json:"failedRegions,omitempty"`
// PublishedDateTime - Timestamp when was last published.
PublishedDateTime *string `json:"publishedDateTime,omitempty"`
}
// PublishSettings the application publish settings.
type PublishSettings struct {
autorest.Response `json:"-"`
// ID - The application ID.
ID *uuid.UUID `json:"id,omitempty"`
// IsSentimentAnalysisEnabled - Setting sentiment analysis as true returns the sentiment of the input utterance along with the response
IsSentimentAnalysisEnabled *bool `json:"sentimentAnalysis,omitempty"`
// IsSpeechEnabled - Enables speech priming in your app
IsSpeechEnabled *bool `json:"speech,omitempty"`
// IsSpellCheckerEnabled - Enables spell checking of the utterance.
IsSpellCheckerEnabled *bool `json:"spellChecker,omitempty"`
}
// PublishSettingUpdateObject object model for updating an application's publish settings.
type PublishSettingUpdateObject struct {
// SentimentAnalysis - Setting sentiment analysis as true returns the Sentiment of the input utterance along with the response
SentimentAnalysis *bool `json:"sentimentAnalysis,omitempty"`
// Speech - Setting speech as public enables speech priming in your app
Speech *bool `json:"speech,omitempty"`
// SpellChecker - Setting spell checker as public enables spell checking the input utterance.
SpellChecker *bool `json:"spellChecker,omitempty"`
}
// ReadCloser ...
type ReadCloser struct {
autorest.Response `json:"-"`
Value *io.ReadCloser `json:"value,omitempty"`
}
// RegexEntity regular Expression Entity Extractor.
type RegexEntity struct {
Name *string `json:"name,omitempty"`
RegexPattern *string `json:"regexPattern,omitempty"`
Roles *[]string `json:"roles,omitempty"`
}
// RegexEntityExtractor regular Expression Entity Extractor.
type RegexEntityExtractor struct {
autorest.Response `json:"-"`
// ID - The ID of the Entity Model.
ID *uuid.UUID `json:"id,omitempty"`
// Name - Name of the Entity Model.
Name *string `json:"name,omitempty"`
// TypeID - The type ID of the Entity Model.
TypeID *int32 `json:"typeId,omitempty"`
// ReadableType - Possible values include: 'ReadableType9EntityExtractor', 'ReadableType9HierarchicalEntityExtractor', 'ReadableType9HierarchicalChildEntityExtractor', 'ReadableType9CompositeEntityExtractor', 'ReadableType9ListEntityExtractor', 'ReadableType9PrebuiltEntityExtractor', 'ReadableType9IntentClassifier', 'ReadableType9PatternAnyEntityExtractor', 'ReadableType9ClosedListEntityExtractor', 'ReadableType9RegexEntityExtractor'
ReadableType ReadableType9 `json:"readableType,omitempty"`
Roles *[]EntityRole `json:"roles,omitempty"`
// RegexPattern - The Regular Expression entity pattern.
RegexPattern *string `json:"regexPattern,omitempty"`
}
// RegexModelCreateObject model object for creating a regular expression entity model.
type RegexModelCreateObject struct {
// RegexPattern - The regular expression entity pattern.
RegexPattern *string `json:"regexPattern,omitempty"`
// Name - The model name.
Name *string `json:"name,omitempty"`
}
// RegexModelUpdateObject model object for updating a regular expression entity model.
type RegexModelUpdateObject struct {
// RegexPattern - The regular expression entity pattern.
RegexPattern *string `json:"regexPattern,omitempty"`
// Name - The model name.
Name *string `json:"name,omitempty"`
}
// SetString ...
type SetString struct {
autorest.Response `json:"-"`
Value map[string]*string `json:"value"`
}
// MarshalJSON is the custom marshaler for SetString.
func (ss SetString) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ss.Value != nil {
objectMap["value"] = ss.Value
}
return json.Marshal(objectMap)
}
// String ...
type String struct {
autorest.Response `json:"-"`
Value *string `json:"value,omitempty"`
}
// SubClosedList sublist of items for a list entity.
type SubClosedList struct {
// CanonicalForm - The standard form that the list represents.
CanonicalForm *string `json:"canonicalForm,omitempty"`
// List - List of synonym words.
List *[]string `json:"list,omitempty"`
}
// SubClosedListResponse sublist of items for a list entity.
type SubClosedListResponse struct {
// ID - The sublist ID
ID *int32 `json:"id,omitempty"`
// CanonicalForm - The standard form that the list represents.
CanonicalForm *string `json:"canonicalForm,omitempty"`
// List - List of synonym words.
List *[]string `json:"list,omitempty"`
}
// TaskUpdateObject object model for cloning an application's version.
type TaskUpdateObject struct {
// Version - The new version for the cloned model.
Version *string `json:"version,omitempty"`
}
// UserAccessList list of user permissions.
type UserAccessList struct {
autorest.Response `json:"-"`
// Owner - The email address of owner of the application.
Owner *string `json:"owner,omitempty"`
Emails *[]string `json:"emails,omitempty"`
}
// UserCollaborator ...
type UserCollaborator struct {
// Email - The email address of the user.
Email *string `json:"email,omitempty"`
}
// UUID ...
type UUID struct {
autorest.Response `json:"-"`
Value *uuid.UUID `json:"value,omitempty"`
}
// VersionInfo object model of an application version.
type VersionInfo struct {
autorest.Response `json:"-"`
// Version - The version ID. E.g.: "0.1"
Version *string `json:"version,omitempty"`
// CreatedDateTime - The version's creation timestamp.
CreatedDateTime *date.Time `json:"createdDateTime,omitempty"`
// LastModifiedDateTime - Timestamp of the last update.
LastModifiedDateTime *date.Time `json:"lastModifiedDateTime,omitempty"`
// LastTrainedDateTime - Timestamp of the last time the model was trained.
LastTrainedDateTime *date.Time `json:"lastTrainedDateTime,omitempty"`
// LastPublishedDateTime - Timestamp when was last published.
LastPublishedDateTime *date.Time `json:"lastPublishedDateTime,omitempty"`
// EndpointURL - The Runtime endpoint URL for this model version.
EndpointURL *string `json:"endpointUrl,omitempty"`
// AssignedEndpointKey - The endpoint key.
AssignedEndpointKey map[string]*string `json:"assignedEndpointKey"`
// ExternalAPIKeys - External keys.
ExternalAPIKeys interface{} `json:"externalApiKeys,omitempty"`
// IntentsCount - Number of intents in this model.
IntentsCount *int32 `json:"intentsCount,omitempty"`
// EntitiesCount - Number of entities in this model.
EntitiesCount *int32 `json:"entitiesCount,omitempty"`
// EndpointHitsCount - Number of calls made to this endpoint.
EndpointHitsCount *int32 `json:"endpointHitsCount,omitempty"`
// TrainingStatus - The current training status. Possible values include: 'NeedsTraining', 'InProgress', 'Trained'
TrainingStatus TrainingStatus `json:"trainingStatus,omitempty"`
}
// MarshalJSON is the custom marshaler for VersionInfo.
func (vi VersionInfo) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if vi.Version != nil {
objectMap["version"] = vi.Version
}
if vi.CreatedDateTime != nil {
objectMap["createdDateTime"] = vi.CreatedDateTime
}
if vi.LastModifiedDateTime != nil {
objectMap["lastModifiedDateTime"] = vi.LastModifiedDateTime
}
if vi.LastTrainedDateTime != nil {
objectMap["lastTrainedDateTime"] = vi.LastTrainedDateTime
}
if vi.LastPublishedDateTime != nil {
objectMap["lastPublishedDateTime"] = vi.LastPublishedDateTime
}
if vi.EndpointURL != nil {
objectMap["endpointUrl"] = vi.EndpointURL
}
if vi.AssignedEndpointKey != nil {
objectMap["assignedEndpointKey"] = vi.AssignedEndpointKey
}
if vi.ExternalAPIKeys != nil {
objectMap["externalApiKeys"] = vi.ExternalAPIKeys
}
if vi.IntentsCount != nil {
objectMap["intentsCount"] = vi.IntentsCount
}
if vi.EntitiesCount != nil {
objectMap["entitiesCount"] = vi.EntitiesCount
}
if vi.EndpointHitsCount != nil {
objectMap["endpointHitsCount"] = vi.EndpointHitsCount
}
if vi.TrainingStatus != "" {
objectMap["trainingStatus"] = vi.TrainingStatus
}
return json.Marshal(objectMap)
}
// WordListBaseUpdateObject object model for updating one of the list entity's sublists.
type WordListBaseUpdateObject struct {
// CanonicalForm - The standard form that the list represents.
CanonicalForm *string `json:"canonicalForm,omitempty"`
// List - List of synonym words.
List *[]string `json:"list,omitempty"`
}
// WordListObject sublist of items for a list entity.
type WordListObject struct {
// CanonicalForm - The standard form that the list represents.
CanonicalForm *string `json:"canonicalForm,omitempty"`
// List - List of synonym words.
List *[]string `json:"list,omitempty"`
}
|