UNPKG
react-native-moengage-inbox
Version:
latest (6.0.2)
6.0.2
6.0.1
6.0.0
5.1.1
5.1.0
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.1.0
4.0.2
4.0.1
4.0.0
3.1.0
3.0.1
2.6.1
2.6.0
2.5.0
2.4.3
2.4.2
2.4.1
2.4.0
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
1.2.0
1.1.0
1.0.0
Inbox Module for the MoEngage Platform
github.com/moengage/React-Native
moengage/React-Native
react-native-moengage-inbox
/
src
/
model
/
MoEMedia.ts
10 lines
(9 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
MoEMediaType
}
from
"./MoEMediaType"
;
export
default
class
MoEMedia
{
mediaType
:
MoEMediaType
;
url
:
string
;
constructor
(
mediaType
:
MoEMediaType
,
url
:
string
) {
this
.
mediaType
= mediaType;
this
.
url
= url; } }