Advertisement
attilan

QA Event mock

Sep 28th, 2022
824
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.53 KB | None | 0 0
  1. export const QA_MOCK: IEventView = {
  2.   isDeletable: false,
  3.   auditorium: null,
  4.   venue: null,
  5.   type: EventType.LIVESTREAM_VIDEO,
  6.   maxCapacity: null,
  7.   shortDescription: '',
  8.   longDescription: '',
  9.   previewImageId: '',
  10.   gallery: [],
  11.   isFree: false,
  12.   ticketFormats: null,
  13.   defaultBoxOfficeTicketFormatType: null,
  14.   channelSettings: [
  15.     {
  16.       channelType: SalesChannel.WEB,
  17.       visibleFrom: '2022-09-28T15:36:47.589+00:00',
  18.       visibleTo: '2022-11-30T19:00:00+00:00',
  19.       availableFrom: '2022-09-28T15:36:47.589+00:00',
  20.       availableTo: '2022-11-30T19:00:00+00:00',
  21.       visibilityEnabled: true,
  22.       availabilityEnabled: true,
  23.     },
  24.   ],
  25.   admissionFrom: '2022-10-01T15:00:00+00:00',
  26.   admissionTo: '2022-10-01T18:00:00+00:00',
  27.   pricingTemplate: {
  28.     ticketGroups: [],
  29.     ungroupedTickets: [],
  30.   },
  31.   pricingTemplateId: null,
  32.   customFields: [],
  33.   duration: null,
  34.   playbackId: 'BpzwqBeYN3oQYNw425hW2gmuE1rRbmRWKNYEnU6bXWo',
  35.   videoName: '',
  36.   hasVideo: false,
  37.   id: '938efacf-1b8d-40c7-9921-b5f4798918d3',
  38.   name: 'live stream video 2',
  39.   mainCategory: {
  40.     id: 'c8c2edc0-0bd6-4faa-ba1a-4d3620a7c27d',
  41.     name: 'programtype_id_1',
  42.   },
  43.   subCategories: [
  44.     {
  45.       id: '6448f70c-ff56-4e71-9d22-88c56f12ab50',
  46.       name: 'programsubtype_id_1',
  47.     },
  48.   ],
  49.   startDate: '2022-10-01T17:00:00+00:00',
  50.   endDate: '2022-11-30T19:00:00+00:00',
  51.   status: ProgramStatus.ACTIVE,
  52.   noDate: false,
  53.   livestreamEndDate: DateTime.fromISO('2022-10-01T17:00:00+00:00').plus({ minutes: 90 }).toISO(),
  54. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement