17 lines
325 B
Swift
17 lines
325 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
/// SignUp step to be followed.
|
|
public enum AuthSignUpStep {
|
|
|
|
/// Need to confirm the user
|
|
case confirmUser(AuthCodeDeliveryDetails?, AdditionalInfo?)
|
|
|
|
/// Sign up is complete
|
|
case done
|
|
}
|