# coding=utf-8
# --------------------------------------------------------------------------
# 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.
# --------------------------------------------------------------------------
from msrest.serialization import Model
[docs]class WebWebGrouping(Model):
"""WebWebGrouping.
All required parameters must be populated in order to send to Azure.
:param web_pages: Required.
:type web_pages:
list[~azure.cognitiveservices.search.websearch.models.WebPage]
:param _type: Required. Constant filled by server.
:type _type: str
"""
_validation = {
'web_pages': {'required': True},
'_type': {'required': True},
}
_attribute_map = {
'web_pages': {'key': 'webPages', 'type': '[WebPage]'},
'_type': {'key': '_type', 'type': 'str'},
}
def __init__(self, *, web_pages, **kwargs) -> None:
super(WebWebGrouping, self).__init__(**kwargs)
self.web_pages = web_pages
self._type = None