|
10 | 10 | import com.google.android.gms.common.internal.safeparcel.SafeParcelable; |
11 | 11 | import com.google.android.gms.common.internal.safeparcel.SafeParcelableCreatorAndWriter; |
12 | 12 |
|
| 13 | +import org.microg.gms.utils.ToStringHelper; |
| 14 | + |
13 | 15 | @SafeParcelable.Class |
14 | 16 | public class SetAsterismConsentRequest extends AbstractSafeParcelable { |
15 | 17 | public static SafeParcelableCreatorAndWriter<SetAsterismConsentRequest> CREATOR = |
@@ -126,6 +128,32 @@ public SetAsterismConsentRequest( |
126 | 128 | this.deviceConsentVersionValue = deviceConsentVersionValue; |
127 | 129 | } |
128 | 130 |
|
| 131 | + @NonNull |
| 132 | + @Override |
| 133 | + public String toString() { |
| 134 | + return ToStringHelper.name("SetAsterismConsentRequest") |
| 135 | + .field("requestCode", requestCode) |
| 136 | + .field("asterismClientValue", asterismClientValue) |
| 137 | + .field("flowContextValue", flowContextValue) |
| 138 | + .field("tosResourceIds", tosResourceIds) |
| 139 | + .field("timestamp", timestamp) |
| 140 | + .field("consentValue", consentValue) |
| 141 | + .field("extras", extras) |
| 142 | + .field("statusValue", statusValue) |
| 143 | + .field("clientVersion", clientVersion) |
| 144 | + .field("language", language) |
| 145 | + .field("field11", field11) |
| 146 | + .field("field12", field12) |
| 147 | + .field("field13", field13) |
| 148 | + .field("accountName", accountName) |
| 149 | + .field("consentVariant", consentVariant) |
| 150 | + .field("consentTrigger", consentTrigger) |
| 151 | + .field("consentVersionValue", consentVersionValue) |
| 152 | + .field("deviceConsentSourceValue", deviceConsentSourceValue) |
| 153 | + .field("deviceConsentVersionValue", deviceConsentVersionValue) |
| 154 | + .end(); |
| 155 | + } |
| 156 | + |
129 | 157 | @Override |
130 | 158 | public void writeToParcel(@NonNull Parcel dest, int flags) { |
131 | 159 | CREATOR.writeToParcel(this, dest, flags); |
|
0 commit comments