tickera-angular-components 0.0.1-dev.23 → 0.0.1-dev.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, WritableSignal, EventEmitter,
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, WritableSignal, EventEmitter, OnChanges, OnDestroy, SimpleChanges, Injector, Type, OnInit, ElementRef } from '@angular/core';
|
|
3
3
|
import { TranslocoLoader, TranslocoService } from '@jsverse/transloco';
|
|
4
4
|
import * as rxjs from 'rxjs';
|
|
5
5
|
import { Observable, Subject } from 'rxjs';
|
|
@@ -1324,14 +1324,22 @@ declare class ToastService {
|
|
|
1324
1324
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
1325
1325
|
}
|
|
1326
1326
|
|
|
1327
|
-
declare class
|
|
1328
|
-
|
|
1329
|
-
isOpen: WritableSignal<boolean>;
|
|
1327
|
+
declare class BaseModalService {
|
|
1328
|
+
readonly isOpen: WritableSignal<boolean>;
|
|
1330
1329
|
get modalIsOpen(): WritableSignal<boolean>;
|
|
1331
|
-
open(
|
|
1330
|
+
open(): void;
|
|
1332
1331
|
close(): void;
|
|
1333
|
-
|
|
1334
|
-
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
type FeedbackModalType = 'loading' | 'success' | 'info' | 'warning' | 'error';
|
|
1335
|
+
declare class FeedbackModalService extends BaseModalService {
|
|
1336
|
+
readonly type: WritableSignal<FeedbackModalType>;
|
|
1337
|
+
readonly title: WritableSignal<string>;
|
|
1338
|
+
readonly message: WritableSignal<string>;
|
|
1339
|
+
openFeedback(type: FeedbackModalType, title: string, message: string): void;
|
|
1340
|
+
close(): void;
|
|
1341
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalService, never>;
|
|
1342
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FeedbackModalService>;
|
|
1335
1343
|
}
|
|
1336
1344
|
|
|
1337
1345
|
declare class DeleteConfirmationService {
|
|
@@ -1607,13 +1615,6 @@ declare class ProductService {
|
|
|
1607
1615
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1608
1616
|
}
|
|
1609
1617
|
|
|
1610
|
-
declare class BaseModalService {
|
|
1611
|
-
readonly isOpen: WritableSignal<boolean>;
|
|
1612
|
-
get modalIsOpen(): WritableSignal<boolean>;
|
|
1613
|
-
open(): void;
|
|
1614
|
-
close(): void;
|
|
1615
|
-
}
|
|
1616
|
-
|
|
1617
1618
|
declare const authInterceptor: HttpInterceptorFn;
|
|
1618
1619
|
|
|
1619
1620
|
declare class AppButtonComponent {
|
|
@@ -1658,15 +1659,109 @@ declare class AppAlertComponent {
|
|
|
1658
1659
|
static ɵcmp: i0.ɵɵComponentDeclaration<AppAlertComponent, "app-alert", never, { "type": { "alias": "type"; "required": false; }; "text": { "alias": "text"; "required": false; }; "closeable": { "alias": "closeable"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
1659
1660
|
}
|
|
1660
1661
|
|
|
1661
|
-
declare class
|
|
1662
|
-
private
|
|
1663
|
-
|
|
1662
|
+
declare class LoadingFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1663
|
+
private feedbackModalService;
|
|
1664
|
+
autoClose: boolean;
|
|
1665
|
+
autoCloseDuration: number;
|
|
1666
|
+
showHeader: boolean;
|
|
1667
|
+
showCloseButton: boolean;
|
|
1668
|
+
showTitle: boolean;
|
|
1669
|
+
private autoCloseTimeout;
|
|
1670
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1664
1671
|
get isOpen(): i0.WritableSignal<boolean>;
|
|
1665
1672
|
get title(): i0.WritableSignal<string>;
|
|
1673
|
+
get message(): i0.WritableSignal<string>;
|
|
1674
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1675
|
+
ngOnDestroy(): void;
|
|
1666
1676
|
closeModal(): void;
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
static
|
|
1677
|
+
private scheduleAutoClose;
|
|
1678
|
+
private clearAutoClose;
|
|
1679
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingFeedbackModalComponent, never>;
|
|
1680
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingFeedbackModalComponent, "loading-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
declare class SuccessFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1684
|
+
private feedbackModalService;
|
|
1685
|
+
autoClose: boolean;
|
|
1686
|
+
autoCloseDuration: number;
|
|
1687
|
+
showHeader: boolean;
|
|
1688
|
+
showCloseButton: boolean;
|
|
1689
|
+
showTitle: boolean;
|
|
1690
|
+
private autoCloseTimeout;
|
|
1691
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1692
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
1693
|
+
get title(): i0.WritableSignal<string>;
|
|
1694
|
+
get message(): i0.WritableSignal<string>;
|
|
1695
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1696
|
+
ngOnDestroy(): void;
|
|
1697
|
+
closeModal(): void;
|
|
1698
|
+
private scheduleAutoClose;
|
|
1699
|
+
private clearAutoClose;
|
|
1700
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SuccessFeedbackModalComponent, never>;
|
|
1701
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuccessFeedbackModalComponent, "success-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
declare class InfoFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1705
|
+
private feedbackModalService;
|
|
1706
|
+
autoClose: boolean;
|
|
1707
|
+
autoCloseDuration: number;
|
|
1708
|
+
showHeader: boolean;
|
|
1709
|
+
showCloseButton: boolean;
|
|
1710
|
+
showTitle: boolean;
|
|
1711
|
+
private autoCloseTimeout;
|
|
1712
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1713
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
1714
|
+
get title(): i0.WritableSignal<string>;
|
|
1715
|
+
get message(): i0.WritableSignal<string>;
|
|
1716
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1717
|
+
ngOnDestroy(): void;
|
|
1718
|
+
closeModal(): void;
|
|
1719
|
+
private scheduleAutoClose;
|
|
1720
|
+
private clearAutoClose;
|
|
1721
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoFeedbackModalComponent, never>;
|
|
1722
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoFeedbackModalComponent, "info-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
declare class WarningFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1726
|
+
private feedbackModalService;
|
|
1727
|
+
autoClose: boolean;
|
|
1728
|
+
autoCloseDuration: number;
|
|
1729
|
+
showHeader: boolean;
|
|
1730
|
+
showCloseButton: boolean;
|
|
1731
|
+
showTitle: boolean;
|
|
1732
|
+
private autoCloseTimeout;
|
|
1733
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1734
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
1735
|
+
get title(): i0.WritableSignal<string>;
|
|
1736
|
+
get message(): i0.WritableSignal<string>;
|
|
1737
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1738
|
+
ngOnDestroy(): void;
|
|
1739
|
+
closeModal(): void;
|
|
1740
|
+
private scheduleAutoClose;
|
|
1741
|
+
private clearAutoClose;
|
|
1742
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WarningFeedbackModalComponent, never>;
|
|
1743
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WarningFeedbackModalComponent, "warning-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
declare class ErrorFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1747
|
+
private feedbackModalService;
|
|
1748
|
+
autoClose: boolean;
|
|
1749
|
+
autoCloseDuration: number;
|
|
1750
|
+
showHeader: boolean;
|
|
1751
|
+
showCloseButton: boolean;
|
|
1752
|
+
showTitle: boolean;
|
|
1753
|
+
private autoCloseTimeout;
|
|
1754
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1755
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
1756
|
+
get title(): i0.WritableSignal<string>;
|
|
1757
|
+
get message(): i0.WritableSignal<string>;
|
|
1758
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1759
|
+
ngOnDestroy(): void;
|
|
1760
|
+
closeModal(): void;
|
|
1761
|
+
private scheduleAutoClose;
|
|
1762
|
+
private clearAutoClose;
|
|
1763
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorFeedbackModalComponent, never>;
|
|
1764
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorFeedbackModalComponent, "error-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1670
1765
|
}
|
|
1671
1766
|
|
|
1672
1767
|
declare class DeleteConfirmationComponent {
|
|
@@ -1689,13 +1784,16 @@ declare class DeleteConfirmationComponent {
|
|
|
1689
1784
|
declare class AppModalComponent {
|
|
1690
1785
|
title: string;
|
|
1691
1786
|
disableClose: boolean;
|
|
1787
|
+
showHeader: boolean;
|
|
1788
|
+
showCloseButton: boolean;
|
|
1789
|
+
showTitle: boolean;
|
|
1692
1790
|
isOpen: WritableSignal<boolean>;
|
|
1693
1791
|
size: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl';
|
|
1694
1792
|
closeModal: EventEmitter<void>;
|
|
1695
1793
|
onCloseModal(): void;
|
|
1696
1794
|
onKeydownEscape(): void;
|
|
1697
1795
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppModalComponent, never>;
|
|
1698
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppModalComponent, "app-modal", never, { "title": { "alias": "title"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "closeModal": "closeModal"; }, never, ["*"], true, never>;
|
|
1796
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppModalComponent, "app-modal", never, { "title": { "alias": "title"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "closeModal": "closeModal"; }, never, ["*"], true, never>;
|
|
1699
1797
|
}
|
|
1700
1798
|
|
|
1701
1799
|
declare class AuditInformationComponent {
|
|
@@ -2605,5 +2703,5 @@ declare class ZonePriceListComponent {
|
|
|
2605
2703
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2606
2704
|
}
|
|
2607
2705
|
|
|
2608
|
-
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CustomerSelectComponent, CustomerService, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, FORM_ERROR_MESSAGES, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondStatus,
|
|
2609
|
-
export type { Admin, AdminsResponse, AsyncSelectConfig, Auditable, CitiesResponse, City, CityResponse, CorporateBond, CorporateBondCode, CorporateBondResponse, CountriesResponse, Country, CountryResponse, Coupon, CouponResponse, Customer, CustomerResponse, CustomersResponse, DailyPerformanceHall, DailyPerformanceItem, DailyPerformancePriceZone, DailyPerformanceShow, DailyPerformanceVenue, DailyPerformancesResponse, DeleteConfirmationOpen, DragDropEvent, DynamicTableHeader, ElementPropertiesTab, FetchCitiesParams, FetchDailyPerformancesParams, FetchProductCategoriesParams, FetchProductTagsParams, FetchProductTypesParams, FetchShowsParams, FileUploadConfig, FindAllPriceZoneParams, GiftBond, GiftBondResponse, GiftBondsResponse, Hall, HallFloor, NumerationConfig, Order, OrderItem, OrderResponse, OrdersResponse, Performance, PerformanceAvailableDay, PerformanceBookingDataResponse, PerformanceResponse, PerformanceTicket, PerformancesAvailableDaysResponse, PerformancesResponseInterface, PriceZone, PriceZoneResponse, PriceZoneUpdateResponse, PriceZonesResponseInterface, Product, ProductCategoriesResponse, ProductCategory, ProductCategoryResponse, ProductImage, ProductResponse, ProductTag, ProductTagResponse, ProductTagsResponse, ProductTaxonomy, ProductType, ProductTypeResponse, ProductTypesResponse, ProductsResponseInterface, RoomMap, RoomMapBaseElement, RoomMapCanvasConfiguration, RoomMapCanvasElement, RoomMapChairPosition, RoomMapElementTemplate, RoomMapExitElement, RoomMapGridPosition, RoomMapPosition, RoomMapProductionAreaElement, RoomMapSeatDisplayState, RoomMapSeatElement, RoomMapSeatState, RoomMapSize, RoomMapStageElement, RoomMapTableElement, RoomMapUnavailableElement, RoomMapZoneElement, SelectOption, Show, ShowCategoriesResponse, ShowCategory, ShowCategoryResponse, ShowGender, ShowGenderResponse, ShowGendersResponse, ShowImage, ShowResponse, ShowType, ShowsResponseInterface, State, StateResponse, StatesResponse, TickeraComponentsConfig, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, ValidateGiftBondResponse, Venue, VenueImage };
|
|
2706
|
+
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CustomerSelectComponent, CustomerService, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, ErrorFeedbackModalComponent, FORM_ERROR_MESSAGES, FeedbackModalService, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondStatus, InfoFeedbackModalComponent, LanguageSwitcherComponent, LoadingFeedbackModalComponent, MinTodayValidator, MustMatchValidator, OrderItemType, OrderStatus, PERFORMANCES_API_ROUTES, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PRODUCT_CATEGORIES_API_ROUTES, PRODUCT_TAGS_API_ROUTES, PRODUCT_TYPES_API_ROUTES, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStepperComponent, PerformanceTicketStatus, PerformancesListEventsService, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, STATE_API_ENDPOINTS, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowsFilterComponent, StateSelectComponent, StatesService, SuccessFeedbackModalComponent, TICKERA_COMPONENTS_CONFIG, TickeraTranslocoLoader, ToastService, ToggleSwitchComponent, VENUES_API_ROUTES, WarningFeedbackModalComponent, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, formatCitiesResponseToSelect, getBrowserLanguage, getCustomerFullname, getStoredLanguage, parseJsonToFormDataAdvanced, provideTickeraComponents, resolveLanguage, setStoredLanguage, transformImageToFile };
|
|
2707
|
+
export type { Admin, AdminsResponse, AsyncSelectConfig, Auditable, CitiesResponse, City, CityResponse, CorporateBond, CorporateBondCode, CorporateBondResponse, CountriesResponse, Country, CountryResponse, Coupon, CouponResponse, Customer, CustomerResponse, CustomersResponse, DailyPerformanceHall, DailyPerformanceItem, DailyPerformancePriceZone, DailyPerformanceShow, DailyPerformanceVenue, DailyPerformancesResponse, DeleteConfirmationOpen, DragDropEvent, DynamicTableHeader, ElementPropertiesTab, FeedbackModalType, FetchCitiesParams, FetchDailyPerformancesParams, FetchProductCategoriesParams, FetchProductTagsParams, FetchProductTypesParams, FetchShowsParams, FileUploadConfig, FindAllPriceZoneParams, GiftBond, GiftBondResponse, GiftBondsResponse, Hall, HallFloor, NumerationConfig, Order, OrderItem, OrderResponse, OrdersResponse, Performance, PerformanceAvailableDay, PerformanceBookingDataResponse, PerformanceResponse, PerformanceTicket, PerformancesAvailableDaysResponse, PerformancesResponseInterface, PriceZone, PriceZoneResponse, PriceZoneUpdateResponse, PriceZonesResponseInterface, Product, ProductCategoriesResponse, ProductCategory, ProductCategoryResponse, ProductImage, ProductResponse, ProductTag, ProductTagResponse, ProductTagsResponse, ProductTaxonomy, ProductType, ProductTypeResponse, ProductTypesResponse, ProductsResponseInterface, RoomMap, RoomMapBaseElement, RoomMapCanvasConfiguration, RoomMapCanvasElement, RoomMapChairPosition, RoomMapElementTemplate, RoomMapExitElement, RoomMapGridPosition, RoomMapPosition, RoomMapProductionAreaElement, RoomMapSeatDisplayState, RoomMapSeatElement, RoomMapSeatState, RoomMapSize, RoomMapStageElement, RoomMapTableElement, RoomMapUnavailableElement, RoomMapZoneElement, SelectOption, Show, ShowCategoriesResponse, ShowCategory, ShowCategoryResponse, ShowGender, ShowGenderResponse, ShowGendersResponse, ShowImage, ShowResponse, ShowType, ShowsResponseInterface, State, StateResponse, StatesResponse, TickeraComponentsConfig, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, ValidateGiftBondResponse, Venue, VenueImage };
|