Blazor Diffusion

<back to all web services

UpdateCreative

Creatives
Requires Authentication
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*


@ValidateRequest(Validator="IsAuthenticated")
open class UpdateCreative : IPatchDb<Creative>
{
    open var id:Int? = null
    open var primaryArtifactId:Int? = null
    open var unpinPrimaryArtifact:Boolean? = null
}

open class Creative : AuditBase()
{
    open var id:Int? = null
    open var userPrompt:String? = null
    open var prompt:String? = null
    open var images:Int? = null
    open var width:Int? = null
    open var height:Int? = null
    open var steps:Int? = null
    open var curatedArtifactId:Int? = null
    open var primaryArtifactId:Int? = null
    open var artistNames:ArrayList<String> = ArrayList<String>()
    open var modifierNames:ArrayList<String> = ArrayList<String>()
    open var artists:ArrayList<CreativeArtist> = ArrayList<CreativeArtist>()
    open var modifiers:ArrayList<CreativeModifier> = ArrayList<CreativeModifier>()
    open var artifacts:ArrayList<Artifact> = ArrayList<Artifact>()
    open var error:String? = null
    open var ownerId:Int? = null
    open var ownerRef:String? = null
    open var key:String? = null
    open var curated:Boolean? = null
    open var rating:Int? = null
    @SerializedName("private") open var Private:Boolean? = null
    open var score:Int? = null
    open var rank:Int? = null
    open var refId:String? = null
    open var requestId:String? = null
    open var engineId:String? = null
}

@DataContract
open class AuditBase
{
    @DataMember(Order=1)
    open var createdDate:Date? = null

    @DataMember(Order=2)
    @Required()
    open var createdBy:String? = null

    @DataMember(Order=3)
    open var modifiedDate:Date? = null

    @DataMember(Order=4)
    @Required()
    open var modifiedBy:String? = null

    @DataMember(Order=5)
    open var deletedDate:Date? = null

    @DataMember(Order=6)
    open var deletedBy:String? = null
}

@ValidateRequest(Validator="HasRole(`Moderator`)")
open class CreativeArtist
{
    open var id:Int? = null
    @References(Type=Creative::class)
    open var creativeId:Int? = null

    @References(Type=Artist::class)
    open var artistId:Int? = null

    open var artist:Artist? = null
}

open class Artist : AuditBase()
{
    open var id:Int? = null
    open var firstName:String? = null
    open var lastName:String? = null
    open var yearDied:Int? = null
    @SerializedName("type") open var Type:ArrayList<String>? = null
    open var score:Int? = null
    open var rank:Int? = null
}

open class CreativeModifier
{
    open var id:Int? = null
    @References(Type=Creative::class)
    open var creativeId:Int? = null

    @References(Type=Modifier::class)
    open var modifierId:Int? = null

    open var modifier:Modifier? = null
}

open class Modifier : AuditBase()
{
    open var id:Int? = null
    open var name:String? = null
    open var category:String? = null
    open var description:String? = null
    open var score:Int? = null
    open var rank:Int? = null
}

open class Artifact : AuditBase()
{
    open var id:Int? = null
    @References(Type=Creative::class)
    open var creativeId:Int? = null

    open var fileName:String? = null
    open var filePath:String? = null
    open var contentType:String? = null
    open var contentLength:Long? = null
    open var width:Int? = null
    open var height:Int? = null
    open var seed:BigInteger? = null
    open var prompt:String? = null
    open var nsfw:Boolean? = null
    open var averageHash:Long? = null
    open var perceptualHash:Long? = null
    open var differenceHash:Long? = null
    open var background:String? = null
    open var lqip:String? = null
    open var quality:Int? = null
    open var likesCount:Int? = null
    open var albumsCount:Int? = null
    open var downloadsCount:Int? = null
    open var searchCount:Int? = null
    open var temporalScore:Int? = null
    open var score:Int? = null
    open var rank:Int? = null
    open var refId:String? = null
    open var versions:HashMap<String,String> = HashMap<String,String>()
}

Kotlin UpdateCreative DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/UpdateCreative HTTP/1.1 
Host: blazordiffusion.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	id: 0,
	primaryArtifactId: 0,
	unpinPrimaryArtifact: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	id: 0,
	userPrompt: String,
	prompt: String,
	images: 0,
	width: 0,
	height: 0,
	steps: 0,
	curatedArtifactId: 0,
	primaryArtifactId: 0,
	artistNames: 
	[
		String
	],
	modifierNames: 
	[
		String
	],
	artists: 
	[
		{
			id: 0,
			creativeId: 0,
			artistId: 0,
			artist: 
			{
				id: 0,
				firstName: String,
				lastName: String,
				yearDied: 0,
				type: 
				[
					String
				],
				score: 0,
				rank: 0,
				createdDate: 0001-01-01,
				createdBy: String,
				modifiedDate: 0001-01-01,
				modifiedBy: String,
				deletedDate: 0001-01-01,
				deletedBy: String
			}
		}
	],
	modifiers: 
	[
		{
			id: 0,
			creativeId: 0,
			modifierId: 0,
			modifier: 
			{
				id: 0,
				name: String,
				category: String,
				description: String,
				score: 0,
				rank: 0,
				createdDate: 0001-01-01,
				createdBy: String,
				modifiedDate: 0001-01-01,
				modifiedBy: String,
				deletedDate: 0001-01-01,
				deletedBy: String
			}
		}
	],
	artifacts: 
	[
		{
			id: 0,
			creativeId: 0,
			fileName: String,
			filePath: String,
			contentType: String,
			contentLength: 0,
			width: 0,
			height: 0,
			seed: 0,
			prompt: String,
			nsfw: False,
			averageHash: 0,
			perceptualHash: 0,
			differenceHash: 0,
			background: String,
			lqip: String,
			quality: 0,
			likesCount: 0,
			albumsCount: 0,
			downloadsCount: 0,
			searchCount: 0,
			temporalScore: 0,
			score: 0,
			rank: 0,
			refId: String,
			versions: 
			{
				String: String
			},
			createdDate: 0001-01-01,
			createdBy: String,
			modifiedDate: 0001-01-01,
			modifiedBy: String,
			deletedDate: 0001-01-01,
			deletedBy: String
		}
	],
	error: String,
	ownerId: 0,
	ownerRef: String,
	key: String,
	curated: False,
	rating: 0,
	private: False,
	score: 0,
	rank: 0,
	refId: String,
	requestId: String,
	engineId: String,
	createdDate: 0001-01-01,
	createdBy: String,
	modifiedDate: 0001-01-01,
	modifiedBy: String,
	deletedDate: 0001-01-01,
	deletedBy: String
}