toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final actions = this.actions;
  final conversationState = this.conversationState;
  final createTime = this.createTime;
  final description = this.description;
  final displayName = this.displayName;
  final languageCode = this.languageCode;
  final name = this.name;
  final playbookInput = this.playbookInput;
  final playbookOutput = this.playbookOutput;
  final tokenCount = this.tokenCount;
  final updateTime = this.updateTime;
  return {
    'actions': ?actions,
    'conversationState': ?conversationState,
    'createTime': ?createTime,
    'description': ?description,
    'displayName': ?displayName,
    'languageCode': ?languageCode,
    'name': ?name,
    'playbookInput': ?playbookInput,
    'playbookOutput': ?playbookOutput,
    'tokenCount': ?tokenCount,
    'updateTime': ?updateTime,
  };
}