mirror of https://github.com/OpenVidu/openvidu.git
25 lines
460 B
TypeScript
25 lines
460 B
TypeScript
![]() |
export class RecordingProperties {
|
||
|
|
||
|
constructor(private rName: string) { }
|
||
|
|
||
|
name(): string {
|
||
|
return this.rName;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export namespace RecordingProperties {
|
||
|
export class Builder {
|
||
|
|
||
|
private rName: string = '';
|
||
|
|
||
|
build(): RecordingProperties {
|
||
|
return new RecordingProperties(this.rName);
|
||
|
}
|
||
|
|
||
|
name(name: string): Builder {
|
||
|
this.rName = name;
|
||
|
return this;
|
||
|
}
|
||
|
};
|
||
|
}
|