ExternalLinkSourceCollectionVariables is an interface representing the variables for the ExternalLinkSourceCollectionQuery. It includes optional id, type, and mediaType.

interface ExternalLinkSourceCollectionVariables {
    id?: number;
    mediaType?: MediaType;
    type?: string;
}

Properties

Properties

id?: number

id is a number representing the id of the external link source collection.

mediaType?: MediaType

mediaType is a string representing the media type of the external link source collection.

type?: string

type is a string representing the type of the external link source collection.