Application class

Annotations
  • @JsonSerializable()

Constructors

Application()
Application.fromJson(Map<String, dynamic> json)
factory

Properties

applicationId int?
Unique ID assigned to the application
getter/setter pair
creationDate String?
Date the application was first added to our database.
getter/setter pair
firstPublished String?
Date the first time the application status entered the 'Public' status.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
Link to website for the application where a user can learn more about the app.
getter/setter pair
name String?
Name of the application
getter/setter pair
origin String?
Value of the Origin header sent in requests generated by this application.
getter/setter pair
overrideAuthorizeViewName String?
An optional override for the Authorize view name.
getter/setter pair
redirectUrl String?
URL used to pass the user's authorization code to the application
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
scope String?
Permissions the application needs to work
getter/setter pair
status ApplicationStatus?
Current status of the application.
getter/setter pair
statusChanged String?
Date the application status last changed.
getter/setter pair
team List<ApplicationDeveloper>?
List of team members who manage this application on Bungie.net. Will always consist of at least the application owner.
getter/setter pair

Methods

asyncToJson() Future<Map<String, dynamic>>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

asyncFromJson(Map<String, dynamic> json) Future<Application>