Skip to content

Commit

Permalink
chore: update TypeScript definition - time stamp: 2020-06-14
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions authored and Github Actions committed Jul 14, 2020
1 parent 9deaf2c commit 425e1b2
Showing 1 changed file with 53 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -980,6 +980,59 @@ export interface MediaModel {
*/
readonly links?: LinkModel[]
}
/**
* Model that represents a member of a developer organisation
*/
export interface MemberModel {
/**
* The id of this member
*/
id?: string
/**
* The timestamp of entity creation
*/
created?: string // date-time
/**
* The timestamp of entity modification
*/
modified?: string // date-time
/**
* The email address of the member
*/
email?: string
/**
* The full name of this member
*/
name?: string
/**
* The job title for this member
*/
jobTitle?: string
/**
* The status of the member (active/inactive/pending/rejected)
*/
status?: string
/**
* The role of the member (active/inactive/pending/rejected)
*/
role?: string
/**
* The date the member agreed to the terms
*/
agreedTerms?: string // date-time
/**
* The id of the developer the member is associated to
*/
developerId?: string // uuid
/**
* A flag specifying if the member has access to agency cloud
*/
agencyCloudAccess?: boolean
/**
* Gets the links associated to this model
*/
readonly links?: LinkModel[]
}
/**
* Model to handle paged data and information
*/
Expand Down

0 comments on commit 425e1b2

Please sign in to comment.