@adapty/capacitor
Version:
Official Adapty SDK for Capacitor
29 lines • 828 B
JavaScript
import { SimpleCoder } from './coder';
export class AdaptyUiOnboardingMetaCoder extends SimpleCoder {
constructor() {
super(...arguments);
this.properties = {
onboardingId: {
key: 'onboarding_id',
required: true,
type: 'string',
},
screenClientId: {
key: 'screen_cid',
required: true,
type: 'string',
},
screenIndex: {
key: 'screen_index',
required: true,
type: 'number',
},
totalScreens: {
key: 'total_screens',
required: true,
type: 'number',
},
};
}
}
//# sourceMappingURL=adapty-ui-onboarding-meta.js.map