AI-generated Key Takeaways
-
TextModuleData is a Parcelable class representing data for a text module associated with a wallet object.
-
It includes a CREATOR field for Parcelable implementation.
-
You can create an instance of TextModuleData using a constructor that takes a header and a body string.
-
The class provides methods to retrieve the header and body strings of the text module.
-
It includes inherited methods for object manipulation and Parcelable functionality.
Parcelable representing data for text module associated with wallet object.
Inherited Constant Summary
Field Summary
public static final Creator<TextModuleData> | CREATOR |
Public Constructor Summary
TextModuleData(String header,
String
body)
Creates an instance of TextModule with given header and body
|
Public Method Summary
String |
getBody()
Returns the text module body.
|
String |
getHeader()
Returns the text module header.
|
void |
writeToParcel(Parcel dest, int
flags)
|
Inherited Method Summary
Fields
public static final Creator<TextModuleData> CREATOR
Public Constructors
Public Methods
public String getBody ()
Returns the text module body.
public String getHeader ()
Returns the text module header.