Class TermsAndConditions
-
- All Implemented Interfaces:
-
android.os.Parcelable
public class TermsAndConditions implements Parcelable
Represents the terms and conditions for Visa Installment Payment. This class implements Parcelable to allow passing it between Android components.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classTermsAndConditions.Builder
-
Field Summary
Fields Modifier and Type Field Description public final Stringurlpublic final intversionpublic final Stringtextpublic final StringlanguageCodepublic final static Parcelable.Creator<TermsAndConditions>CREATOR
-
Constructor Summary
Constructors Constructor Description TermsAndConditions(TermsAndConditions.Builder builder)
-
Method Summary
Modifier and Type Method Description StringgetUrl()Return url of Terms and Conditions. intgetVersion()Return version of Terms and Conditions. StringgetText()Return text of Terms and Conditions. StringgetLanguageCode()Return language code of Terms and Conditions. booleanequals(@Nullable() Object o)inthashCode()intdescribeContents()voidwriteToParcel(@NonNull() Parcel dest, int flags)-
-
Constructor Detail
-
TermsAndConditions
TermsAndConditions(TermsAndConditions.Builder builder)
-
-
Method Detail
-
getUrl
@Nullable() String getUrl()
Return url of Terms and Conditions.
- Returns:
the url of the terms and conditions, or null if not set.
-
getVersion
int getVersion()
Return version of Terms and Conditions.
- Returns:
the version of the terms and conditions.
-
getText
@Nullable() String getText()
Return text of Terms and Conditions.
- Returns:
the text of the terms and conditions, or null if not set.
-
getLanguageCode
@Nullable() String getLanguageCode()
Return language code of Terms and Conditions.
- Returns:
the language code of the terms and conditions, or null if not set.
-
hashCode
int hashCode()
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(@NonNull() Parcel dest, int flags)
-
-
-
-