Home Reference Source
import {Meeting} from '@quobis/sippojs'
public class | source

Meeting

Represents a meeting. This class is immutable. All the properties are readonly and must never be changed. Instances of this class are usually obtained using MeetingManager

Member Summary

Public Members
public

The address of the meeting creator

public

The ID of the meeting

public

Is this meeting password protected

public

The language for the meeting

public

The name for the meeting

public

The people participating in the meeting

public

Who will be called to access to the meeting

public

The link to access to the meeting

public

The starting time for the meeting

public

The ending time for the meeting

Method Summary

Public Methods
public

Check if the participant in a meeting is online

public

with(options: object): Meeting

Returns a new meeting with the provided values changed

Public Members

public creator: string source

The address of the meeting creator

public id: string source

The ID of the meeting

public isPasswordProtected: boolean source

Is this meeting password protected

public language: string source

The language for the meeting

public name: string source

The name for the meeting

public participants: ImmutableSet<string> source

The people participating in the meeting

public phone: string source

Who will be called to access to the meeting

public url: string source

The link to access to the meeting

public validSince: number source

The starting time for the meeting

public validUntil: number source

The ending time for the meeting

Public Methods

public isOnline(): boolean source

Check if the participant in a meeting is online

Return:

boolean

public with(options: object): Meeting source

Returns a new meeting with the provided values changed

Params:

NameTypeAttributeDescription
options object
  • optional
  • default: {}
options.name string
  • optional
options.participants Iterable<MeetingParticipant>
  • optional
options.language string
  • optional
options.validSince number
  • optional
options.validUntil number
  • optional
options.url string
  • optional
options.phone string
  • optional

Return:

Meeting