mark-test-sdk-react-native
Version:
25 lines • 869 B
JavaScript
/** Base class for all overlay settings objects */
export class CustomSettings {
constructor() {
this.headerBackgroundColor = null;
this.headerTextColor = null;
this.headerTitleText = null;
this.headerTitleImage = null;
this.bodyBackgroundColor = null;
this.bodyTextColor = null;
this.bodyTitleColor = null;
this.language = "en";
this.geoLanguage = null;
this.buttonBackgroundColor = null;
this.buttonTextColor = null;
this.buttonBorderColor = null;
this.minimumAgeLimit = "18";
this.allowNameSuggestion = false;
this.accountOwnerFirstName = null;
this.accountOwnerLastName = null;
this.cardOwnerFirstName = null;
this.cardOwnerLastName = null;
this.requestId = null;
this.reviewPage = null;
}
}