Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions apis/duck/v1alpha1/channelable_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ type Channelable struct {
}

// ChannelSubscriberSpec defines a single subscriber to a Channel.
// CallableDomain is the endpoint for the call
// SinkableDomain is the endpoint for the result
// One of them must be present
// CallableURI is the endpoint for the call
// SinkableURI is the endpoint for the result
// At least one of them must be present.
type ChannelSubscriberSpec struct {
// +optional
CallableDomain string `json:"callableDomain,omitempty"`
CallableURI string `json:"callableURI,omitempty"`
// +optional
SinkableDomain string `json:"sinkableDomain,omitempty"`
SinkableURI string `json:"sinkableURI,omitempty"`
}


Expand Down