Blazor Diffusion

<back to all web services

QueryCreatives

Creatives
import 'package:servicestack/servicestack.dart';

// @DataContract
abstract class QueryBase
{
    // @DataMember(Order=1)
    int? skip;

    // @DataMember(Order=2)
    int? take;

    // @DataMember(Order=3)
    String? orderBy;

    // @DataMember(Order=4)
    String? orderByDesc;

    // @DataMember(Order=5)
    String? include;

    // @DataMember(Order=6)
    String? fields;

    // @DataMember(Order=7)
    Map<String,String?>? meta;

    QueryBase({this.skip,this.take,this.orderBy,this.orderByDesc,this.include,this.fields,this.meta});
    QueryBase.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        skip = json['skip'];
        take = json['take'];
        orderBy = json['orderBy'];
        orderByDesc = json['orderByDesc'];
        include = json['include'];
        fields = json['fields'];
        meta = JsonConverters.toStringMap(json['meta']);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'skip': skip,
        'take': take,
        'orderBy': orderBy,
        'orderByDesc': orderByDesc,
        'include': include,
        'fields': fields,
        'meta': meta
    };

    getTypeName() => "QueryBase";
    TypeContext? context = _ctx;
}

abstract class QueryDb<T> extends QueryBase
{
    QueryDb();
    QueryDb.fromJson(Map<String, dynamic> json) : super.fromJson(json);
    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson();
    getTypeName() => "QueryDb<$T>";
    TypeContext? context = _ctx;
}

// @DataContract
abstract class AuditBase
{
    // @DataMember(Order=1)
    DateTime? createdDate;

    // @DataMember(Order=2)
    // @required()
    String? createdBy;

    // @DataMember(Order=3)
    DateTime? modifiedDate;

    // @DataMember(Order=4)
    // @required()
    String? modifiedBy;

    // @DataMember(Order=5)
    DateTime? deletedDate;

    // @DataMember(Order=6)
    String? deletedBy;

    AuditBase({this.createdDate,this.createdBy,this.modifiedDate,this.modifiedBy,this.deletedDate,this.deletedBy});
    AuditBase.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        createdDate = JsonConverters.fromJson(json['createdDate'],'DateTime',context!);
        createdBy = json['createdBy'];
        modifiedDate = JsonConverters.fromJson(json['modifiedDate'],'DateTime',context!);
        modifiedBy = json['modifiedBy'];
        deletedDate = JsonConverters.fromJson(json['deletedDate'],'DateTime',context!);
        deletedBy = json['deletedBy'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'createdDate': JsonConverters.toJson(createdDate,'DateTime',context!),
        'createdBy': createdBy,
        'modifiedDate': JsonConverters.toJson(modifiedDate,'DateTime',context!),
        'modifiedBy': modifiedBy,
        'deletedDate': JsonConverters.toJson(deletedDate,'DateTime',context!),
        'deletedBy': deletedBy
    };

    getTypeName() => "AuditBase";
    TypeContext? context = _ctx;
}

class Artist extends AuditBase implements IConvertible
{
    int? id;
    String? firstName;
    String? lastName;
    int? yearDied;
    List<String>? type;
    int? score;
    int? rank;

    Artist({this.id,this.firstName,this.lastName,this.yearDied,this.type,this.score,this.rank});
    Artist.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'];
        firstName = json['firstName'];
        lastName = json['lastName'];
        yearDied = json['yearDied'];
        type = JsonConverters.fromJson(json['type'],'List<String>',context!);
        score = json['score'];
        rank = json['rank'];
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'firstName': firstName,
        'lastName': lastName,
        'yearDied': yearDied,
        'type': JsonConverters.toJson(type,'List<String>',context!),
        'score': score,
        'rank': rank
    });

    getTypeName() => "Artist";
    TypeContext? context = _ctx;
}

// @ValidateRequest(Validator="HasRole(`Moderator`)")
class CreativeArtist implements IConvertible
{
    int? id;
    // @References(typeof(Creative))
    int? creativeId;

    // @References(typeof(Artist))
    int? artistId;

    Artist? artist;

    CreativeArtist({this.id,this.creativeId,this.artistId,this.artist});
    CreativeArtist.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        creativeId = json['creativeId'];
        artistId = json['artistId'];
        artist = JsonConverters.fromJson(json['artist'],'Artist',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'creativeId': creativeId,
        'artistId': artistId,
        'artist': JsonConverters.toJson(artist,'Artist',context!)
    };

    getTypeName() => "CreativeArtist";
    TypeContext? context = _ctx;
}

class Modifier extends AuditBase implements IConvertible
{
    int? id;
    String? name;
    String? category;
    String? description;
    int? score;
    int? rank;

    Modifier({this.id,this.name,this.category,this.description,this.score,this.rank});
    Modifier.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'];
        name = json['name'];
        category = json['category'];
        description = json['description'];
        score = json['score'];
        rank = json['rank'];
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'name': name,
        'category': category,
        'description': description,
        'score': score,
        'rank': rank
    });

    getTypeName() => "Modifier";
    TypeContext? context = _ctx;
}

class CreativeModifier implements IConvertible
{
    int? id;
    // @References(typeof(Creative))
    int? creativeId;

    // @References(typeof(Modifier))
    int? modifierId;

    Modifier? modifier;

    CreativeModifier({this.id,this.creativeId,this.modifierId,this.modifier});
    CreativeModifier.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        creativeId = json['creativeId'];
        modifierId = json['modifierId'];
        modifier = JsonConverters.fromJson(json['modifier'],'Modifier',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'creativeId': creativeId,
        'modifierId': modifierId,
        'modifier': JsonConverters.toJson(modifier,'Modifier',context!)
    };

    getTypeName() => "CreativeModifier";
    TypeContext? context = _ctx;
}

class Artifact extends AuditBase implements IConvertible
{
    int? id;
    // @References(typeof(Creative))
    int? creativeId;

    String? fileName;
    String? filePath;
    String? contentType;
    int? contentLength;
    int? width;
    int? height;
    int? seed;
    String? prompt;
    bool? nsfw;
    int? averageHash;
    int? perceptualHash;
    int? differenceHash;
    String? background;
    String? lqip;
    int? quality;
    int? likesCount;
    int? albumsCount;
    int? downloadsCount;
    int? searchCount;
    int? temporalScore;
    int? score;
    int? rank;
    String? refId;
    Map<String,String?>? versions = {};

    Artifact({this.id,this.creativeId,this.fileName,this.filePath,this.contentType,this.contentLength,this.width,this.height,this.seed,this.prompt,this.nsfw,this.averageHash,this.perceptualHash,this.differenceHash,this.background,this.lqip,this.quality,this.likesCount,this.albumsCount,this.downloadsCount,this.searchCount,this.temporalScore,this.score,this.rank,this.refId,this.versions});
    Artifact.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'];
        creativeId = json['creativeId'];
        fileName = json['fileName'];
        filePath = json['filePath'];
        contentType = json['contentType'];
        contentLength = json['contentLength'];
        width = json['width'];
        height = json['height'];
        seed = json['seed'];
        prompt = json['prompt'];
        nsfw = json['nsfw'];
        averageHash = json['averageHash'];
        perceptualHash = json['perceptualHash'];
        differenceHash = json['differenceHash'];
        background = json['background'];
        lqip = json['lqip'];
        quality = json['quality'];
        likesCount = json['likesCount'];
        albumsCount = json['albumsCount'];
        downloadsCount = json['downloadsCount'];
        searchCount = json['searchCount'];
        temporalScore = json['temporalScore'];
        score = json['score'];
        rank = json['rank'];
        refId = json['refId'];
        versions = JsonConverters.toStringMap(json['versions']);
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'creativeId': creativeId,
        'fileName': fileName,
        'filePath': filePath,
        'contentType': contentType,
        'contentLength': contentLength,
        'width': width,
        'height': height,
        'seed': seed,
        'prompt': prompt,
        'nsfw': nsfw,
        'averageHash': averageHash,
        'perceptualHash': perceptualHash,
        'differenceHash': differenceHash,
        'background': background,
        'lqip': lqip,
        'quality': quality,
        'likesCount': likesCount,
        'albumsCount': albumsCount,
        'downloadsCount': downloadsCount,
        'searchCount': searchCount,
        'temporalScore': temporalScore,
        'score': score,
        'rank': rank,
        'refId': refId,
        'versions': versions
    });

    getTypeName() => "Artifact";
    TypeContext? context = _ctx;
}

class Creative extends AuditBase implements IConvertible
{
    int? id;
    String? userPrompt;
    String? prompt;
    int? images;
    int? width;
    int? height;
    int? steps;
    int? curatedArtifactId;
    int? primaryArtifactId;
    List<String>? artistNames = [];
    List<String>? modifierNames = [];
    List<CreativeArtist>? artists = [];
    List<CreativeModifier>? modifiers = [];
    List<Artifact>? artifacts = [];
    String? error;
    int? ownerId;
    String? ownerRef;
    String? key;
    bool? curated;
    int? rating;
    bool? private;
    int? score;
    int? rank;
    String? refId;
    String? requestId;
    String? engineId;

    Creative({this.id,this.userPrompt,this.prompt,this.images,this.width,this.height,this.steps,this.curatedArtifactId,this.primaryArtifactId,this.artistNames,this.modifierNames,this.artists,this.modifiers,this.artifacts,this.error,this.ownerId,this.ownerRef,this.key,this.curated,this.rating,this.private,this.score,this.rank,this.refId,this.requestId,this.engineId});
    Creative.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'];
        userPrompt = json['userPrompt'];
        prompt = json['prompt'];
        images = json['images'];
        width = json['width'];
        height = json['height'];
        steps = json['steps'];
        curatedArtifactId = json['curatedArtifactId'];
        primaryArtifactId = json['primaryArtifactId'];
        artistNames = JsonConverters.fromJson(json['artistNames'],'List<String>',context!);
        modifierNames = JsonConverters.fromJson(json['modifierNames'],'List<String>',context!);
        artists = JsonConverters.fromJson(json['artists'],'List<CreativeArtist>',context!);
        modifiers = JsonConverters.fromJson(json['modifiers'],'List<CreativeModifier>',context!);
        artifacts = JsonConverters.fromJson(json['artifacts'],'List<Artifact>',context!);
        error = json['error'];
        ownerId = json['ownerId'];
        ownerRef = json['ownerRef'];
        key = json['key'];
        curated = json['curated'];
        rating = json['rating'];
        private = json['private'];
        score = json['score'];
        rank = json['rank'];
        refId = json['refId'];
        requestId = json['requestId'];
        engineId = json['engineId'];
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'userPrompt': userPrompt,
        'prompt': prompt,
        'images': images,
        'width': width,
        'height': height,
        'steps': steps,
        'curatedArtifactId': curatedArtifactId,
        'primaryArtifactId': primaryArtifactId,
        'artistNames': JsonConverters.toJson(artistNames,'List<String>',context!),
        'modifierNames': JsonConverters.toJson(modifierNames,'List<String>',context!),
        'artists': JsonConverters.toJson(artists,'List<CreativeArtist>',context!),
        'modifiers': JsonConverters.toJson(modifiers,'List<CreativeModifier>',context!),
        'artifacts': JsonConverters.toJson(artifacts,'List<Artifact>',context!),
        'error': error,
        'ownerId': ownerId,
        'ownerRef': ownerRef,
        'key': key,
        'curated': curated,
        'rating': rating,
        'private': private,
        'score': score,
        'rank': rank,
        'refId': refId,
        'requestId': requestId,
        'engineId': engineId
    });

    getTypeName() => "Creative";
    TypeContext? context = _ctx;
}

class QueryCreatives extends QueryDb<Creative> implements IConvertible
{
    int? id;
    String? createdBy;
    int? ownerId;

    QueryCreatives({this.id,this.createdBy,this.ownerId});
    QueryCreatives.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'];
        createdBy = json['createdBy'];
        ownerId = json['ownerId'];
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'createdBy': createdBy,
        'ownerId': ownerId
    });

    getTypeName() => "QueryCreatives";
    TypeContext? context = _ctx;
}

class ArtifactResult extends Artifact implements IConvertible
{
    String? userPrompt;
    List<String>? artistNames = [];
    List<String>? modifierNames = [];
    int? primaryArtifactId;
    String? ownerRef;
    double? similarity;

    ArtifactResult({this.userPrompt,this.artistNames,this.modifierNames,this.primaryArtifactId,this.ownerRef,this.similarity});
    ArtifactResult.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        userPrompt = json['userPrompt'];
        artistNames = JsonConverters.fromJson(json['artistNames'],'List<String>',context!);
        modifierNames = JsonConverters.fromJson(json['modifierNames'],'List<String>',context!);
        primaryArtifactId = json['primaryArtifactId'];
        ownerRef = json['ownerRef'];
        similarity = JsonConverters.toDouble(json['similarity']);
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'userPrompt': userPrompt,
        'artistNames': JsonConverters.toJson(artistNames,'List<String>',context!),
        'modifierNames': JsonConverters.toJson(modifierNames,'List<String>',context!),
        'primaryArtifactId': primaryArtifactId,
        'ownerRef': ownerRef,
        'similarity': similarity
    });

    getTypeName() => "ArtifactResult";
    TypeContext? context = _ctx;
}

// @DataContract
class QueryResponse<T> implements IConvertible
{
    // @DataMember(Order=1)
    int? offset;

    // @DataMember(Order=2)
    int? total;

    // @DataMember(Order=3)
    List<ArtifactResult>? results;

    // @DataMember(Order=4)
    Map<String,String?>? meta;

    // @DataMember(Order=5)
    ResponseStatus? responseStatus;

    QueryResponse({this.offset,this.total,this.results,this.meta,this.responseStatus});
    QueryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        offset = json['offset'];
        total = json['total'];
        results = JsonConverters.fromJson(json['results'],'List<ArtifactResult>',context!);
        meta = JsonConverters.toStringMap(json['meta']);
        responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'offset': offset,
        'total': total,
        'results': JsonConverters.toJson(results,'List<ArtifactResult>',context!),
        'meta': meta,
        'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
    };

    getTypeName() => "QueryResponse<$T>";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'blazordiffusion.com', types: <String, TypeInfo> {
    'Artist': TypeInfo(TypeOf.Class, create:() => Artist()),
    'CreativeArtist': TypeInfo(TypeOf.Class, create:() => CreativeArtist()),
    'Modifier': TypeInfo(TypeOf.Class, create:() => Modifier()),
    'CreativeModifier': TypeInfo(TypeOf.Class, create:() => CreativeModifier()),
    'Artifact': TypeInfo(TypeOf.Class, create:() => Artifact()),
    'Creative': TypeInfo(TypeOf.Class, create:() => Creative()),
    'List<CreativeArtist>': TypeInfo(TypeOf.Class, create:() => <CreativeArtist>[]),
    'List<CreativeModifier>': TypeInfo(TypeOf.Class, create:() => <CreativeModifier>[]),
    'List<Artifact>': TypeInfo(TypeOf.Class, create:() => <Artifact>[]),
    'QueryCreatives': TypeInfo(TypeOf.Class, create:() => QueryCreatives()),
    'List<Creative>': TypeInfo(TypeOf.Class, create:() => <Creative>[]),
    'ArtifactResult': TypeInfo(TypeOf.Class, create:() => ArtifactResult()),
    'List<ArtifactResult>': TypeInfo(TypeOf.Class, create:() => <ArtifactResult>[]),
});

Dart QueryCreatives DTOs

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

HTTP + XML

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

POST /xml/reply/QueryCreatives HTTP/1.1 
Host: blazordiffusion.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<QueryCreatives xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlazorDiffusion.ServiceModel">
  <Skip xmlns="http://schemas.servicestack.net/types">0</Skip>
  <Take xmlns="http://schemas.servicestack.net/types">0</Take>
  <OrderBy xmlns="http://schemas.servicestack.net/types">String</OrderBy>
  <OrderByDesc xmlns="http://schemas.servicestack.net/types">String</OrderByDesc>
  <Include xmlns="http://schemas.servicestack.net/types">String</Include>
  <Fields xmlns="http://schemas.servicestack.net/types">String</Fields>
  <Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.servicestack.net/types">
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value>String</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
  </Meta>
  <CreatedBy>String</CreatedBy>
  <Id>0</Id>
  <OwnerId>0</OwnerId>
</QueryCreatives>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<QueryResponseOfCreative55quYL7_S xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
  <Offset>0</Offset>
  <Total>0</Total>
  <Results xmlns:d2p1="http://schemas.datacontract.org/2004/07/BlazorDiffusion.ServiceModel">
    <d2p1:Creative>
      <CreatedDate>0001-01-01T00:00:00</CreatedDate>
      <CreatedBy>String</CreatedBy>
      <ModifiedDate>0001-01-01T00:00:00</ModifiedDate>
      <ModifiedBy>String</ModifiedBy>
      <DeletedDate>0001-01-01T00:00:00</DeletedDate>
      <DeletedBy>String</DeletedBy>
      <d2p1:Artifacts>
        <d2p1:Artifact>
          <CreatedDate>0001-01-01T00:00:00</CreatedDate>
          <CreatedBy>String</CreatedBy>
          <ModifiedDate>0001-01-01T00:00:00</ModifiedDate>
          <ModifiedBy>String</ModifiedBy>
          <DeletedDate>0001-01-01T00:00:00</DeletedDate>
          <DeletedBy>String</DeletedBy>
          <d2p1:AlbumsCount>0</d2p1:AlbumsCount>
          <d2p1:AverageHash>0</d2p1:AverageHash>
          <d2p1:Background>String</d2p1:Background>
          <d2p1:ContentLength>0</d2p1:ContentLength>
          <d2p1:ContentType>String</d2p1:ContentType>
          <d2p1:CreativeId>0</d2p1:CreativeId>
          <d2p1:DifferenceHash>0</d2p1:DifferenceHash>
          <d2p1:DownloadsCount>0</d2p1:DownloadsCount>
          <d2p1:FileName>String</d2p1:FileName>
          <d2p1:FilePath>String</d2p1:FilePath>
          <d2p1:Height>0</d2p1:Height>
          <d2p1:Id>0</d2p1:Id>
          <d2p1:LikesCount>0</d2p1:LikesCount>
          <d2p1:Lqip>String</d2p1:Lqip>
          <d2p1:Nsfw>false</d2p1:Nsfw>
          <d2p1:PerceptualHash>0</d2p1:PerceptualHash>
          <d2p1:Prompt>String</d2p1:Prompt>
          <d2p1:Quality>0</d2p1:Quality>
          <d2p1:Rank>0</d2p1:Rank>
          <d2p1:RefId>String</d2p1:RefId>
          <d2p1:Score>0</d2p1:Score>
          <d2p1:SearchCount>0</d2p1:SearchCount>
          <d2p1:Seed>0</d2p1:Seed>
          <d2p1:TemporalScore>0</d2p1:TemporalScore>
          <d2p1:Versions xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:KeyValueOfstringstring>
              <d6p1:Key>String</d6p1:Key>
              <d6p1:Value>String</d6p1:Value>
            </d6p1:KeyValueOfstringstring>
          </d2p1:Versions>
          <d2p1:Width>0</d2p1:Width>
        </d2p1:Artifact>
      </d2p1:Artifacts>
      <d2p1:ArtistNames xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>String</d4p1:string>
      </d2p1:ArtistNames>
      <d2p1:Artists>
        <d2p1:CreativeArtist>
          <d2p1:Artist>
            <CreatedDate>0001-01-01T00:00:00</CreatedDate>
            <CreatedBy>String</CreatedBy>
            <ModifiedDate>0001-01-01T00:00:00</ModifiedDate>
            <ModifiedBy>String</ModifiedBy>
            <DeletedDate>0001-01-01T00:00:00</DeletedDate>
            <DeletedBy>String</DeletedBy>
            <d2p1:FirstName>String</d2p1:FirstName>
            <d2p1:Id>0</d2p1:Id>
            <d2p1:LastName>String</d2p1:LastName>
            <d2p1:Rank>0</d2p1:Rank>
            <d2p1:Score>0</d2p1:Score>
            <d2p1:Type xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:string>String</d7p1:string>
            </d2p1:Type>
            <d2p1:YearDied>0</d2p1:YearDied>
          </d2p1:Artist>
          <d2p1:ArtistId>0</d2p1:ArtistId>
          <d2p1:CreativeId>0</d2p1:CreativeId>
          <d2p1:Id>0</d2p1:Id>
        </d2p1:CreativeArtist>
      </d2p1:Artists>
      <d2p1:Curated>false</d2p1:Curated>
      <d2p1:CuratedArtifactId>0</d2p1:CuratedArtifactId>
      <d2p1:EngineId>String</d2p1:EngineId>
      <d2p1:Error>String</d2p1:Error>
      <d2p1:Height>0</d2p1:Height>
      <d2p1:Id>0</d2p1:Id>
      <d2p1:Images>0</d2p1:Images>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:ModifierNames xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>String</d4p1:string>
      </d2p1:ModifierNames>
      <d2p1:Modifiers>
        <d2p1:CreativeModifier>
          <d2p1:CreativeId>0</d2p1:CreativeId>
          <d2p1:Id>0</d2p1:Id>
          <d2p1:Modifier>
            <CreatedDate>0001-01-01T00:00:00</CreatedDate>
            <CreatedBy>String</CreatedBy>
            <ModifiedDate>0001-01-01T00:00:00</ModifiedDate>
            <ModifiedBy>String</ModifiedBy>
            <DeletedDate>0001-01-01T00:00:00</DeletedDate>
            <DeletedBy>String</DeletedBy>
            <d2p1:Category>String</d2p1:Category>
            <d2p1:Description>String</d2p1:Description>
            <d2p1:Id>0</d2p1:Id>
            <d2p1:Name>String</d2p1:Name>
            <d2p1:Rank>0</d2p1:Rank>
            <d2p1:Score>0</d2p1:Score>
          </d2p1:Modifier>
          <d2p1:ModifierId>0</d2p1:ModifierId>
        </d2p1:CreativeModifier>
      </d2p1:Modifiers>
      <d2p1:OwnerId>0</d2p1:OwnerId>
      <d2p1:OwnerRef>String</d2p1:OwnerRef>
      <d2p1:PrimaryArtifactId>0</d2p1:PrimaryArtifactId>
      <d2p1:Private>false</d2p1:Private>
      <d2p1:Prompt>String</d2p1:Prompt>
      <d2p1:Rank>0</d2p1:Rank>
      <d2p1:Rating>0</d2p1:Rating>
      <d2p1:RefId>String</d2p1:RefId>
      <d2p1:RequestId>String</d2p1:RequestId>
      <d2p1:Score>0</d2p1:Score>
      <d2p1:Steps>0</d2p1:Steps>
      <d2p1:UserPrompt>String</d2p1:UserPrompt>
      <d2p1:Width>0</d2p1:Width>
    </d2p1:Creative>
  </Results>
  <Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value>String</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
  </Meta>
  <ResponseStatus>
    <ErrorCode>String</ErrorCode>
    <Message>String</Message>
    <StackTrace>String</StackTrace>
    <Errors>
      <ResponseError>
        <ErrorCode>String</ErrorCode>
        <FieldName>String</FieldName>
        <Message>String</Message>
        <Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </Meta>
      </ResponseError>
    </Errors>
    <Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </Meta>
  </ResponseStatus>
</QueryResponseOfCreative55quYL7_S>