22 lines
508 B
Java
22 lines
508 B
Java
|
package com.scb.phone.data.entity.otp;
|
||
|
|
||
|
import org.simpleframework.xml.Element;
|
||
|
import org.simpleframework.xml.Root;
|
||
|
|
||
|
@Root(name = "SusanooEntity")
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class SusanooEntity {
|
||
|
|
||
|
@Element(name = "Description", required = false)
|
||
|
private String description;
|
||
|
|
||
|
@Element(name = "msisdn", required = false)
|
||
|
public String phoneNumber;
|
||
|
|
||
|
@Element(name = "Response")
|
||
|
private String response;
|
||
|
|
||
|
@Element(name = "TAG", required = false)
|
||
|
public String tag;
|
||
|
}
|