Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InvitationStatus ¶
type InvitationStatus string
InvitationStatus Indicates whether the tester has accepted the invitation.
func InvitationStatus_ACCEPTED ¶
func InvitationStatus_ACCEPTED() InvitationStatus
func InvitationStatus_NOT_ACCEPTED ¶
func InvitationStatus_NOT_ACCEPTED() InvitationStatus
type ListTestersResponse ¶
type ListTestersResponse struct {
Testers []*TesterWithDetails `json:"testers,omitempty"`
IsTruncated bool `json:"isTruncated,omitempty"`
NextToken string `json:"nextToken,omitempty"`
}
type Tester ¶
type Tester struct {
// Email address of the tester.
EmailId string `json:"emailId,omitempty"`
}
type TesterWithDetails ¶
type TesterWithDetails struct {
// Email address of the tester.
EmailId string `json:"emailId,omitempty"`
// Date and time when the tester is added to the beta test.
AssociationDate time.Time `json:"associationDate,omitempty"`
// Indicates whether the tester is allowed to be sent reminder.
IsReminderAllowed bool `json:"isReminderAllowed,omitempty"`
InvitationStatus *InvitationStatus `json:"invitationStatus,omitempty"`
}
TesterWithDetails Tester information.
type TestersList ¶
type TestersList struct {
// List of the email address of testers.
Testers []*Tester `json:"testers,omitempty"`
}
TestersList List of testers.
Click to show internal directories.
Click to hide internal directories.