-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1098 from nugu-developers/develop/1.9.1
- Loading branch information
Showing
29 changed files
with
398 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
NuguAgents/Sources/CapabilityAgents/AudioPlayer/Display/Models/AudioPlayer2Template.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// | ||
// AudioPlayer2Template.swift | ||
// NuguAgents | ||
// | ||
// Created by 박종상님/iOS클라이언트개발팀 on 2023/09/11. | ||
// Copyright © 2023 SK Telecom Co., Ltd. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
/// <#Description#> | ||
public struct AudioPlayer2Template: Decodable { | ||
public let template: Template | ||
|
||
public struct Template: Decodable { | ||
public let type: String | ||
public let title: Title | ||
public let content: Content | ||
public let grammarGuide: [String]? | ||
|
||
public struct Title: Decodable { | ||
public let iconUrl: String? | ||
public let text: String | ||
} | ||
|
||
public struct Content: Decodable { | ||
public let title: String | ||
public let subtitle: String | ||
public let subtitle1: String? | ||
public let imageUrl: String? | ||
public let durationSec: String? | ||
public let backgroundColor: String? | ||
public let lyrics: AudioPlayerLyricsTemplate? | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.