NotificationActionResponse.ts 193 Bytes
Newer Older
1
export class NotificationActionResponse {
2
  identifier: string;
3 4 5 6 7 8
  text?: string;

  constructor(response: any) {
    this.identifier = response.identifier;
    this.text = response.text;
  }
9
}