import { ContentTypeSnippetContracts } from '../../contracts'; import { ContentTypeSnippetModels, SharedModels } from '../../models'; import { BaseResponses } from '../base-responses'; export declare namespace ContentTypeSnippetResponses { class ContentTypeSnippetListResponse extends BaseResponses.BaseContentManagementListResponse { constructor(debug: BaseResponses.IContentManagementResponseDebug, rawData: ContentTypeSnippetContracts.IContentTypeSnippetListResponseContract, data: { items: ContentTypeSnippetModels.ContentTypeSnippet[]; pagination: SharedModels.Pagination; }); } class ContentTypeSnippetListAllResponse extends BaseResponses.ContentManagementListAllResponse { constructor(data: { items: ContentTypeSnippetModels.ContentTypeSnippet[]; responses: ContentTypeSnippetListResponse[]; }); } class ViewContentTypeSnippetResponse extends BaseResponses.BaseContentManagementResponse { constructor(debug: BaseResponses.IContentManagementResponseDebug, rawData: ContentTypeSnippetContracts.IViewContentTypeSnippetResponseContract, data: ContentTypeSnippetModels.ContentTypeSnippet); } class AddContentTypeSnippetResponse extends BaseResponses.BaseContentManagementResponse { constructor(debug: BaseResponses.IContentManagementResponseDebug, rawData: ContentTypeSnippetContracts.IAddContentTypeSnippetResponseContract, data: ContentTypeSnippetModels.ContentTypeSnippet); } class ModifyContentTypeSnippetResponse extends BaseResponses.BaseContentManagementResponse { constructor(debug: BaseResponses.IContentManagementResponseDebug, rawData: ContentTypeSnippetContracts.IModifyContentTypeSnippetResponseContract, data: ContentTypeSnippetModels.ContentTypeSnippet); } }