Name | Type | Description | Notes |
---|---|---|---|
VideoId | string | Create a summary of a video using the video ID. | |
Origin | Pointer to string | Use this parameter to define how the API generates the summary. The only allowed value is `auto`, which means that the API generates a summary automatically. If you do not set this parameter, the API will not generate a summary automatically. In this case, `sourceStatus` will return `missing`, and you have to manually add a summary using the `PATCH /summaries/{summaryId}/source` endpoint operation. | [optional] |
Attributes | Pointer to []string | Use this parameter to define the elements of a summary that you want to generate. If you do not define this parameter, the API generates a full summary with all attributes. The possible values are `abstract` and `takeaways`. | [optional] |
func NewSummaryCreationPayload(videoId string, ) *SummaryCreationPayload
NewSummaryCreationPayload instantiates a new SummaryCreationPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewSummaryCreationPayloadWithDefaults() *SummaryCreationPayload
NewSummaryCreationPayloadWithDefaults instantiates a new SummaryCreationPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *SummaryCreationPayload) GetVideoId() string
GetVideoId returns the VideoId field if non-nil, zero value otherwise.
func (o *SummaryCreationPayload) GetVideoIdOk() (*string, bool)
GetVideoIdOk returns a tuple with the VideoId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SummaryCreationPayload) SetVideoId(v string)
SetVideoId sets VideoId field to given value.
func (o *SummaryCreationPayload) GetOrigin() string
GetOrigin returns the Origin field if non-nil, zero value otherwise.
func (o *SummaryCreationPayload) GetOriginOk() (*string, bool)
GetOriginOk returns a tuple with the Origin field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SummaryCreationPayload) SetOrigin(v string)
SetOrigin sets Origin field to given value.
func (o *SummaryCreationPayload) HasOrigin() bool
HasOrigin returns a boolean if a field has been set.
func (o *SummaryCreationPayload) GetAttributes() []string
GetAttributes returns the Attributes field if non-nil, zero value otherwise.
func (o *SummaryCreationPayload) GetAttributesOk() (*[]string, bool)
GetAttributesOk returns a tuple with the Attributes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SummaryCreationPayload) SetAttributes(v []string)
SetAttributes sets Attributes field to given value.
func (o *SummaryCreationPayload) HasAttributes() bool
HasAttributes returns a boolean if a field has been set.