This repository has been archived by the owner on Feb 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added DTO for content data: heusalagroup/hghs#22
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright (c) 2022. Heusala Group Oy <info@heusalagroup.fi>. All rights reserved. | ||
|
||
import { hasNoOtherKeys, isRegularObject } from "../../../../core/modules/lodash"; | ||
import { isMatrixGuestAccess, MatrixGuestAccess } from "./MatrixGuestAccess"; | ||
|
||
export interface RoomGuestAccessContentDTO { | ||
readonly guest_access : MatrixGuestAccess; | ||
} | ||
|
||
export function createRoomGuestAccessContentDTO ( | ||
guest_access: MatrixGuestAccess | ||
): RoomGuestAccessContentDTO { | ||
return { | ||
guest_access | ||
}; | ||
} | ||
|
||
export function isRoomGuestAccessContentDTO (value: any): value is RoomGuestAccessContentDTO { | ||
return ( | ||
isRegularObject(value) | ||
&& hasNoOtherKeys(value, [ | ||
'guest_access' | ||
]) | ||
&& isMatrixGuestAccess(value?.guest_access) | ||
); | ||
} | ||
|
||
export function stringifyRoomGuestAccessContentDTO (value: RoomGuestAccessContentDTO): string { | ||
return `RoomGuestAccessContentDTO(${value})`; | ||
} | ||
|
||
export function parseRoomGuestAccessContentDTO (value: any): RoomGuestAccessContentDTO | undefined { | ||
if ( isRoomGuestAccessContentDTO(value) ) return value; | ||
return undefined; | ||
} |