blob: ca87c27b3ef6cc1be8d514d1120474cee253d80b [file] [log] [blame]
package com.android.onboarding.contracts
/**
* Represents the attached result after running [OnboardingActivityApiContract.attach].
*
* @property valid `true` if the intent is valid, `false` otherwise.
*/
data class AttachedResult(val valid: Boolean)