This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package xyz; | |
import java.io.Serializable; | |
public class ZoomGlobalDialInNumbersDTO implements Serializable { | |
private static final long serialVersionUID = 1L; | |
private String country; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package xyz; | |
import java.io.Serializable; | |
public class ZoomInterpreterDTO implements Serializable { | |
private static final long serialVersionUID = 1L; | |
public String email; | |
public String languages; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package xyz; | |
import java.io.Serializable; | |
public class ZoomMeetingOccurenceDTO implements Serializable { | |
private static final long serialVersionUID = 1L; | |
private String occurrence_id; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package xyz; | |
import java.io.Serializable; | |
public class ZoomMeetingRecurrenceDTO implements Serializable { | |
private static final long serialVersionUID = 1L; | |
private Integer type; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package xyz; | |
import java.io.Serializable; | |
import java.util.List; | |
public class ZoomMeetingSettingsDTO implements Serializable { | |
private static final long serialVersionUID = 1L; | |
private Boolean host_video; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package xyz; | |
public class ZoomMeetingTrackingFieldsDTO { | |
public String field; | |
public String value; | |
public Boolean visible; | |
public String getField() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package dehaze.mvp.service.dto.zoom; | |
import java.io.Serializable; | |
import java.util.List; | |
public class ZoomMeetingObjectDTO implements Serializable { | |
private static final long serialVersionUID = 1L; | |
private Long id; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package xyz; | |
import java.io.Serializable; | |
import java.util.List; | |
public class ZoomMeetingsListResponseDTO implements Serializable { | |
private static final long serialVersionUID = -218290644483495371L; | |
private Integer page_size; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
import { Directive, Input, TemplateRef, ViewContainerRef, OnDestroy } from '@angular/core'; | |
import { Subscription } from 'rxjs'; | |
/** | |
* @whatItDoes Conditionally includes an HTML element if current user has any | |
* of the roles passed as the `expression`. | |
* | |
* @howToUse | |
* ``` |