Organisation Resource
@JsonClass(generateAdapter = true )
Data class representing an OrganisationResource. Conforms to Resource, HasName, HasIcon and HasLinks.
Parameters
created At
The timestamp when the organisation was created.
updated At
The timestamp when the organisation was last updated.
id
The unique identifier of the organisation.
name
The name of the organisation.
icon
The icon of the organisation.
has Active Subscription
Indicates whether the organisation has an active subscription.
is Admin
Indicates whether the authenticated user is an administrator of the organisation.
links
The links associated with the organisation.
Constructors
Link copied to clipboard
constructor(@Json(name = "created_at" ) createdAt: String, @Json(name = "updated_at" ) updatedAt: String, @Json(name = "id" ) id: String, @Json(name = "name" ) name: String, @Json(name = "icon" ) icon: String, @Json(name = "has_active_subscription" ) hasActiveSubscription: Boolean, @Json(name = "is_admin" ) isAdmin: Boolean, @Json(name = "links" ) links: Links)