• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.onboarding.contracts
2 
3 /**
4  * Represents the attached result after running [OnboardingActivityApiContract.attach].
5  *
6  * @property valid `true` if the intent is valid, `false` otherwise.
7  */
8 data class AttachedResult(val valid: Boolean)
9