toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apiProducts = this.apiProducts;
final appFamily = this.appFamily;
final appId = this.appId;
final attributes = this.attributes;
final callbackUrl = this.callbackUrl;
final createdAt = this.createdAt;
final credentials = this.credentials;
final developerId = this.developerId;
final keyExpiresIn = this.keyExpiresIn;
final lastModifiedAt = this.lastModifiedAt;
final name = this.name;
final scopes = this.scopes;
final status = this.status;
return {
'apiProducts': ?apiProducts,
'appFamily': ?appFamily,
'appId': ?appId,
'attributes': ?attributes,
'callbackUrl': ?callbackUrl,
'createdAt': ?createdAt,
'credentials': ?credentials,
'developerId': ?developerId,
'keyExpiresIn': ?keyExpiresIn,
'lastModifiedAt': ?lastModifiedAt,
'name': ?name,
'scopes': ?scopes,
'status': ?status,
};
}